Skip to content

Commit

Permalink
Fix Keybindings for K / N
Browse files Browse the repository at this point in the history
  • Loading branch information
Urs Joss committed May 23, 2017
1 parent be55878 commit 792c94f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mainimpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1035,7 +1035,7 @@ void MainImpl::shortCutActivated() {
if (key == Qt::Key_I) {
rv->tab()->listViewLog->on_keyUp();
}
else if (key == (Qt::Key_K or key == Qt::Key_N)) {
else if ((key == Qt::Key_K) or (key == Qt::Key_N)) {
rv->tab()->listViewLog->on_keyDown();
}
else if (key == (Qt::SHIFT | Qt::Key_Up)) {
Expand Down

0 comments on commit 792c94f

Please sign in to comment.