From 755e06d1c37e69e671b80bcd2fd757e114a576c8 Mon Sep 17 00:00:00 2001 From: mellodoot Date: Mon, 2 Oct 2023 12:17:09 +0100 Subject: [PATCH] ignore meta (win/cmd) key combos --- public/scripts/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/scripts/main.js b/public/scripts/main.js index 75f2d8f..3774fdb 100644 --- a/public/scripts/main.js +++ b/public/scripts/main.js @@ -233,7 +233,7 @@ function handle_input(event) { return; } - if (event.ctrlKey) { + if (event.ctrlKey || event.metaKey) { return; }