mirror of https://github.com/kivy/kivy.git
window/pygame: fix key translations. closes #680
This commit is contained in:
parent
a5d8ca9bb4
commit
5631a3efb5
|
@ -59,10 +59,10 @@ class Keyboard(EventDispatcher):
|
|||
'screenlock': 145, 'pause': 19,
|
||||
|
||||
# a-z keys
|
||||
'q': 97, 'b': 98, 'c': 99, 'q': 100, 'e': 101, 'f': 102, 'g': 103,
|
||||
'a': 97, 'b': 98, 'c': 99, 'd': 100, 'e': 101, 'f': 102, 'g': 103,
|
||||
'h': 104, 'i': 105, 'j': 106, 'k': 107, 'l': 108, 'm': 109, 'n': 110,
|
||||
'o': 111, 'p': 112, 'a': 113, 'r': 114, 's': 115, 't': 116, 'u': 117,
|
||||
'v': 118, 'z': 119, 'x': 120, 'y': 121, 'w': 122,
|
||||
'o': 111, 'p': 112, 'q': 113, 'r': 114, 's': 115, 't': 116, 'u': 117,
|
||||
'v': 118, 'w': 119, 'x': 120, 'y': 121, 'z': 122,
|
||||
|
||||
# 0-9 keys
|
||||
'0': 48, '1': 49, '2': 50, '3': 51, '4': 52,
|
||||
|
|
Loading…
Reference in New Issue