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

Adjusted the keystrokes in wicd-curses to support 8-bit terminals (like xterms by default).

Thanks to DarkStarSword for the patch.
This commit is contained in:
Andrew Psaltis
2009-09-02 10:20:13 -04:00
parent ec8eade509
commit 05a46ddfdc
3 changed files with 14 additions and 38 deletions

View File

@@ -3,8 +3,8 @@
""" wicd-curses. (curses/urwid-based) console interface to wicd
Provides the a console UI for wicd, so that people with broken X servers can
at least get a network connection. Or those who don't like using X. ;-)
Provides a console UI for wicd, so that people with broken X servers can
at least get a network connection. Or those who don't like using X and/or GTK.
"""
@@ -583,11 +583,11 @@ class appGUI():
def init_other_optcols(self):
# The "tabbed" preferences dialog
self.prefCols = OptCols( [ ('meta enter','OK'),
('meta [','Tab Left',),
('meta ]','Tab Right'),
self.prefCols = OptCols( [ ('f10','OK'),
('page up','Tab Left',),
('page down', 'Tab Right'),
('esc','Cancel') ], self.handle_keys)
self.confCols = OptCols( [ ('meta enter','OK'),
self.confCols = OptCols( [ ('f10','OK'),
('esc','Cancel') ],self.handle_keys)
# Does what it says it does
@@ -902,7 +902,7 @@ class appGUI():
if k == 'esc' or k == 'q' or k == 'Q':
self.restore_primary()
break
if k == 'meta enter':
if k == 'f10':
self.diag.save_settings()
self.restore_primary()
break