From fedd788264ccf8c12bace8373eb080ad4b1532d9 Mon Sep 17 00:00:00 2001 From: Andrew Psaltis Date: Tue, 21 Apr 2009 14:09:29 -0400 Subject: [PATCH] Fixed a problem where if a scan is initiated externally, and wicd-curses doesn't see it, wicd-curses will half-drop a running big dialog. --- curses/wicd-curses.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/curses/wicd-curses.py b/curses/wicd-curses.py index a8ce2dfb..db9641a 100755 --- a/curses/wicd-curses.py +++ b/curses/wicd-curses.py @@ -616,7 +616,8 @@ class appGUI(): self.do_diag_lock = False return True self.update_netlist(force_check=True) - self.frame.set_body(self.thePile) + if not self.diag: + self.frame.set_body(self.thePile) self.screen_locked = False self.update_ui()