summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2017-05-24 20:24:48 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2017-05-24 20:24:48 +0200
commit9bb2faa22f3400dfe7d00c5179eefec2c6a01f99 (patch)
tree43b6c6c90a76d1649eeedcb3201e31c97f64dad7 /js
parent29092e992b2631345b9fcef2bd02eec3d2bf18ce (diff)
fix line length
Diffstat (limited to 'js')
-rw-r--r--js/gui/KeyboardShortcuts.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/gui/KeyboardShortcuts.js b/js/gui/KeyboardShortcuts.js
index 05e023544..7a1c20ed0 100644
--- a/js/gui/KeyboardShortcuts.js
+++ b/js/gui/KeyboardShortcuts.js
@@ -428,7 +428,8 @@
}
// everything with shift, just the shift
- } else if (noInputFocused($(':focus')) && event.shiftKey && !event.ctrlKey && !event.altKey && !event.metaKey) {
+ } else if (noInputFocused($(':focus')) && event.shiftKey &&
+ !event.ctrlKey && !event.altKey && !event.metaKey) {
// shift + a
if ([65].indexOf(keyCode) >= 0) {