From 0ea73730f9f1309f21dabcf211f50e91cdf3c303 Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Fri, 4 Nov 2016 16:26:19 -0200 Subject: [PATCH] Fixed defaut shortcuts for view rotation - fixes #2756 --- src/Gui/CommandView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Gui/CommandView.cpp b/src/Gui/CommandView.cpp index 892c105e5..c3f11bac6 100644 --- a/src/Gui/CommandView.cpp +++ b/src/Gui/CommandView.cpp @@ -1244,7 +1244,7 @@ StdCmdViewRotateLeft::StdCmdViewRotateLeft() sWhatsThis = "Std_ViewXX"; sStatusTip = QT_TR_NOOP("Rotate the view by 90\xc2\xb0 counter-clockwise"); sPixmap = "view-rotate-left"; - //sAccel = "Shift Left"; + sAccel = "Shift+Left"; eType = Alter3DView; } @@ -1269,7 +1269,7 @@ StdCmdViewRotateRight::StdCmdViewRotateRight() sWhatsThis = "Std_ViewXX"; sStatusTip = QT_TR_NOOP("Rotate the view by 90\xc2\xb0 clockwise"); sPixmap = "view-rotate-right"; - //sAccel = "Shift Right"; + sAccel = "Shift+Right"; eType = Alter3DView; }