Fix Ctrl+6 and Ctrl+/ not working

Fixes #79
This commit is contained in:
Kovid Goyal 2017-05-22 21:01:14 +05:30
parent 24d0bb8bd5
commit 38d2839206
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -72,6 +72,8 @@ control_codes.update({
for i, k in
enumerate(range(defines.GLFW_KEY_A, defines.GLFW_KEY_RIGHT_BRACKET + 1))
})
control_codes[defines.GLFW_KEY_6] = (30,)
control_codes[defines.GLFW_KEY_SLASH] = (31,)
rmkx_key_map = smkx_key_map.copy()