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

Made M^ and C^ into Alt+ and Ctrl+ respectively in OptCols.

Rearranged the OptCols for the preferences dialog to match those in the others.
This commit is contained in:
Andrew Psaltis
2009-05-23 00:32:29 -04:00
parent 650b451ce2
commit 6d00df2675
2 changed files with 13 additions and 11 deletions

View File

@@ -571,15 +571,12 @@ class appGUI():
def init_other_optcols(self):
# The "tabbed" preferences dialog
self.prefCols = OptCols( [('meta enter','OK'),
('esc','Cancel'),
('meta [','Tab Left',),
('meta ]','Tab Right')],self.handle_keys
)
self.confCols = OptCols( [
('meta enter','OK'),
('esc','Cancel')
],self.handle_keys)
self.prefCols = OptCols( [ ('meta enter','OK'),
('meta [','Tab Left',),
('meta ]','Tab Right'),
('esc','Cancel') ], self.handle_keys)
self.confCols = OptCols( [ ('meta enter','OK'),
('esc','Cancel') ],self.handle_keys)
# Does what it says it does
def lock_screen(self):