From 6690d9bb32ef541b54d0a63a6338852c0add50b2 Mon Sep 17 00:00:00 2001 From: Andrew Psaltis Date: Thu, 5 Mar 2009 11:20:43 -0500 Subject: [PATCH] Actually made window resizing not drop the help screen. --- curses/wicd-curses.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/curses/wicd-curses.py b/curses/wicd-curses.py index 2884dca..072798d 100644 --- a/curses/wicd-curses.py +++ b/curses/wicd-curses.py @@ -251,7 +251,7 @@ def help_dialog(body): keys = ui.get_input() if 'window resize' in keys: dim = ui.get_cols_rows() - elif ui.get_input(): + elif keys: break #elif keys != '': # break diff --git a/setup.py b/setup.py index 489b24e..4a21ae4 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ import subprocess VERSION_NUM = '1.6.0a1' # REVISION_NUM is automatically updated REVISION_NUM = 'unknown' -CURSES_REVNO = 'uimod-r284' +CURSES_REVNO = 'uimod-r286' try: if not os.path.exists('vcsinfo.py'):