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

Actually made window resizing not drop the help screen.

This commit is contained in:
Andrew Psaltis
2009-03-05 11:20:43 -05:00
parent ea7f8ac627
commit 6690d9bb32
2 changed files with 2 additions and 2 deletions

View File

@@ -251,7 +251,7 @@ def help_dialog(body):
keys = ui.get_input() keys = ui.get_input()
if 'window resize' in keys: if 'window resize' in keys:
dim = ui.get_cols_rows() dim = ui.get_cols_rows()
elif ui.get_input(): elif keys:
break break
#elif keys != '': #elif keys != '':
# break # break

View File

@@ -28,7 +28,7 @@ import subprocess
VERSION_NUM = '1.6.0a1' VERSION_NUM = '1.6.0a1'
# REVISION_NUM is automatically updated # REVISION_NUM is automatically updated
REVISION_NUM = 'unknown' REVISION_NUM = 'unknown'
CURSES_REVNO = 'uimod-r284' CURSES_REVNO = 'uimod-r286'
try: try:
if not os.path.exists('vcsinfo.py'): if not os.path.exists('vcsinfo.py'):