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
The problem is that using the "key" of the KeyboardEvent works correctly only within the same keyboard layout, so, for example, if the English layout is set, "key" will be "u", but if the Russian one is set, it will be "г". Therefore, it is better to use a universal key code for key bindings, which will be "KeyU" for any keyboard layout.
The text was updated successfully, but these errors were encountered:
The problem is that using the "key" of the KeyboardEvent works correctly only within the same keyboard layout, so, for example, if the English layout is set, "key" will be "u", but if the Russian one is set, it will be "г". Therefore, it is better to use a universal key code for key bindings, which will be "KeyU" for any keyboard layout.
The text was updated successfully, but these errors were encountered: