ignore meta (win/cmd) key combos
This commit is contained in:
parent
a6607a0069
commit
755e06d1c3
|
@ -233,7 +233,7 @@ function handle_input(event) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (event.ctrlKey) {
|
if (event.ctrlKey || event.metaKey) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue