summaryrefslogtreecommitdiffstats
path: root/js/gui/KeyboardShortcuts.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/gui/KeyboardShortcuts.js')
-rw-r--r--js/gui/KeyboardShortcuts.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/gui/KeyboardShortcuts.js b/js/gui/KeyboardShortcuts.js
index 6b976ebc4..05e023544 100644
--- a/js/gui/KeyboardShortcuts.js
+++ b/js/gui/KeyboardShortcuts.js
@@ -427,8 +427,8 @@
// page up
}
- // everything with shift
- } else if (noInputFocused($(':focus')) && event.shiftKey) {
+ // everything with shift, just the shift
+ } else if (noInputFocused($(':focus')) && event.shiftKey && !event.ctrlKey && !event.altKey && !event.metaKey) {
// shift + a
if ([65].indexOf(keyCode) >= 0) {