From 787939db3d238a004b6e998b83df179c7ce669b7 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Thu, 9 Feb 2017 22:57:31 -0500 Subject: [PATCH] add ctrl+shift+z alternate shortcut for redo --- src/gui/game/GameView.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gui/game/GameView.cpp b/src/gui/game/GameView.cpp index 662cd3361..fa92a2d47 100644 --- a/src/gui/game/GameView.cpp +++ b/src/gui/game/GameView.cpp @@ -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 {