Fix Ctrl+Alt+Space not working in normal and application keyboard modes.

Fixes #562
This commit is contained in:
Kovid Goyal
2018-05-22 14:52:00 +05:30
parent c5da1c0f1b
commit fe65b346c1
2 changed files with 11 additions and 1 deletions

View File

@@ -49,7 +49,9 @@ SHIFTED_KEYS = {
defines.GLFW_KEY_DOWN: key_as_bytes('kind'),
}
control_alt_codes = {}
control_alt_codes = {
defines.GLFW_KEY_SPACE: b'\x1b\0',
}
for kf, kn in {
defines.GLFW_KEY_UP: 'kcuu1',