mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-06 13:55:19 +08:00
Merge pull request #751 from SeerLite/ignore-alt
Ignore keys with Alt modifier
This commit is contained in:
commit
d007cd4cf7
1 changed files with 1 additions and 0 deletions
|
@ -4939,6 +4939,7 @@ function handleAlpha(event) {
|
|||
if (/Numpad/.test(event.key)) return;
|
||||
if (/Volume/.test(event.key)) return;
|
||||
if (event.ctrlKey) return;
|
||||
if (event.altKey) return;
|
||||
if (event.metaKey) return;
|
||||
event = emulateLayout(event);
|
||||
|
||||
|
|
Loading…
Reference in a new issue