Commit 7e8b9f2f authored by Oleg Korshul's avatar Oleg Korshul

ie CJK space input

parent aed8bc09
......@@ -191,7 +191,7 @@
global_keyboardEvent.KeyCode = e.keyCode;
global_keyboardEvent.Which = e.which;
if ((global_keyboardEvent.KeyCode == 229) && (e.code == "space") || (e.code == "Space"))
if ((global_keyboardEvent.KeyCode == 229) && ((e.code == "space") || (e.code == "Space") || (e.key == "Spacebar")))
{
global_keyboardEvent.KeyCode = 12288;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment