1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-19 20:38:00 +01:00

Prevent the progress spinner from spinning like crazy in the urwid tip.

This commit is contained in:
Andrew Psaltis
2009-08-07 17:10:58 -04:00
parent 1930680787
commit 61a92a3acc

View File

@@ -706,7 +706,7 @@ class appGUI():
if self.connecting: if self.connecting:
if not self.conn_status: if not self.conn_status:
self.conn_status = True self.conn_status = True
gobject.idle_add(self.set_connecting_status,fast) gobject.timeout_add(250,self.set_connecting_status,fast)
return True return True
else: else:
if check_for_wired(wired.GetWiredIP(''),self.set_status): if check_for_wired(wired.GetWiredIP(''),self.set_status):