summaryrefslogtreecommitdiff
path: root/wwwroot
diff options
context:
space:
mode:
Diffstat (limited to 'wwwroot')
-rw-r--r--wwwroot/js/keyboard.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/wwwroot/js/keyboard.js b/wwwroot/js/keyboard.js
index 392a7d1..72ed3cb 100644
--- a/wwwroot/js/keyboard.js
+++ b/wwwroot/js/keyboard.js
@@ -41,7 +41,7 @@ async function keyDownHandler(e) {
.filter(b => !isDialogChild(b))
.find(b => b.dataset.keyboardShortcut == e.key);
- if(button) {
+ if(!e.ctrlKey && button) {
button.click();
e.preventDefault();
return;