From 49a2dd04f677b42c1d94bac03f9541a38ab04771 Mon Sep 17 00:00:00 2001 From: Andrew Psaltis Date: Sat, 30 May 2009 23:12:53 -0400 Subject: [PATCH] Increased time between wireless scans to 2 seconds. --- curses/wicd-curses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curses/wicd-curses.py b/curses/wicd-curses.py index a2e0b51..34da866 100755 --- a/curses/wicd-curses.py +++ b/curses/wicd-curses.py @@ -1010,7 +1010,7 @@ def run(): # Update what the interface looks like as an idle function gobject.idle_add(app.update_ui) # Update the connection status on the bottom every 1.5 s. - gobject.timeout_add(1500,app.update_status) + gobject.timeout_add(2000,app.update_status) # This will make sure that it is updated on the second. gobject.timeout_add(500,app.update_time) loop.run()