Skip to content

Commit

Permalink
add ctrl+shift+z alternate shortcut for redo
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob1 committed Feb 10, 2017
1 parent 8f4e3a5 commit 787939d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/gui/game/GameView.cpp
Expand Up @@ -1460,7 +1460,10 @@ void GameView::OnKeyPress(int key, Uint16 character, bool shift, bool ctrl, bool
break;
if (ctrl && !isMouseDown)
{
c->HistoryRestore();
if (shift)
c->HistoryForward();
else
c->HistoryRestore();
}
else
{
Expand Down

0 comments on commit 787939d

Please sign in to comment.