ignore meta (win/cmd) key combos

This commit is contained in:
mellodoot 2023-10-02 12:17:09 +01:00
parent a6607a0069
commit 755e06d1c3

View file

@ -233,7 +233,7 @@ function handle_input(event) {
return; return;
} }
if (event.ctrlKey) { if (event.ctrlKey || event.metaKey) {
return; return;
} }