Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168.

This commit is contained in:
Kurt B. Kaiser 2006-07-18 04:03:16 +00:00
parent 18d2f39af7
commit 4b7e35b530
2 changed files with 12 additions and 1 deletions

View file

@ -202,7 +202,7 @@ class GetKeysDialog(Toplevel):
':':'colon',',':'comma','.':'period','<':'less','>':'greater',
'/':'slash','?':'question','Page Up':'Prior','Page Down':'Next',
'Left Arrow':'Left','Right Arrow':'Right','Up Arrow':'Up',
'Down Arrow': 'Down', 'Tab':'tab'}
'Down Arrow': 'Down', 'Tab':'Tab'}
if key in translateDict.keys():
key = translateDict[key]
if 'Shift' in modifiers and key in string.ascii_lowercase: