Fix incorrect full keyboard mode escape codes

This commit is contained in:
Kovid Goyal 2017-09-15 10:44:56 +05:30
parent cdb12f2049
commit 2de0c82f18
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -138,9 +138,9 @@ def get_localized_key(key, scancode):
action_map = {
defines.GLFW_PRESS: b'p',
defines.GLFW_RELEASE: b'r',
defines.GLFW_REPEAT: b't'
defines.GLFW_PRESS: 'p',
defines.GLFW_RELEASE: 'r',
defines.GLFW_REPEAT: 't'
}