1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-23 14:42:29 +01:00

curses/wicd-curses.py:

Added a mention of the About dialog in the help
curses/prefs_curses.py:
  Fixed mouse support
in/man=wicd-curses.8.in
  Added a mention of the about dialog
This commit is contained in:
Andrew Psaltis
2009-02-08 12:26:50 -05:00
parent 5a9b8ed9a5
commit e5dbf2755f
4 changed files with 12 additions and 11 deletions

View File

@@ -425,12 +425,12 @@ class PrefsDialog(urwid.WidgetWrap):
return False
for k in keys:
#Send key to underlying widget:
overlay.keypress(dim, k)
if urwid.is_mouse_event(k):
event, button, col, row = k
overlay.mouse_event( dim,
event, button, col, row,
focus=True)
overlay.keypress(dim, k)
# Check if buttons are pressed.
if self.CANCEL_PRESSED:
return False