You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've just found that my numpad is typeing chars in the english layout.
For example Numpad 7 has JavaScript KeyCode 103 (0x67), which is also the KeyCode of 'g' on my android phone.
Android is sending always 229 as KeyCode to get around this I've seen that you are mapping the unicode position of the char to the scancode. Maybe we should always use the unicode way, except for the arrow keys and similar keys.
Open for good ideas to handle that problem...
The text was updated successfully, but these errors were encountered:
I've just found that my numpad is typeing chars in the english layout.
For example Numpad 7 has JavaScript KeyCode 103 (0x67), which is also the KeyCode of 'g' on my android phone.
Android is sending always 229 as KeyCode to get around this I've seen that you are mapping the unicode position of the char to the scancode. Maybe we should always use the unicode way, except for the arrow keys and similar keys.
Open for good ideas to handle that problem...
The text was updated successfully, but these errors were encountered: