From e1d27b5c9e02b0201bcd2f485fdcd27ae64a726d Mon Sep 17 00:00:00 2001 From: Roman Date: Wed, 24 May 2017 09:20:53 +0200 Subject: Fix for #54 (#159) I've noticed this behavior too, it really annoys. --- js/gui/KeyboardShortcuts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'js') 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) { -- cgit v1.2.3