add ctrl+shift+z alternate shortcut for redo

This commit is contained in:
jacob1 2017-02-09 22:57:31 -05:00
parent 8f4e3a56bd
commit 787939db3d

View File

@ -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
{