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

curses/wicd-curses.py: ListBox focus-maintaining code completely debugged

This commit is contained in:
Andrew Psaltis
2009-02-05 16:33:45 -05:00
parent 96f55c0d3b
commit f437f17b58
3 changed files with 8 additions and 8 deletions

View File

@@ -726,10 +726,10 @@ class appGUI():
@wrap_exceptions()
def idle_incr(self):
theText = " "
#if self.special != None:
# theText += self.special
if self.connecting:
theText += "-- "+language['connecting']+' -- '+language["esc_to_cancel"]
else:
theText += "-- Press H or ? for Help"
quit_note = ' -- '+language["press_to_quit"]
self.footer1 = urwid.Text(str(self.incr) + theText+quit_note,wrap='clip')
self.incr+=1