Ignore keypresses during IME composition (#1573)

Some IMEs continue sending keypresses even during composition, so we 
just ignore them.
This commit is contained in:
Guldoman
2023-10-18 13:14:23 +08:00
committed by takase1121
parent a066190ee2
commit 8c451928bf
2 changed files with 3 additions and 4 deletions
-4
View File
@@ -203,10 +203,6 @@ end
-- Events listening
--------------------------------------------------------------------------------
function keymap.on_key_pressed(k, ...)
-- In MacOS and Windows during IME composition input is still sent to us
-- so we just ignore it
if PLATFORM ~= "Linux" and ime.editing then return false end
local mk = modkey_map[k]
if mk then
keymap.modkeys[mk] = true