Skip to content

Commit

Permalink
fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernhard Posselt committed May 24, 2017
1 parent 29092e9 commit 9bb2faa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/gui/KeyboardShortcuts.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 9bb2faa

Please sign in to comment.