From 8112926a2a25bd8d12bfe407ee2225b09b3d0447 Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 5 Sep 2017 08:36:43 +0200 Subject: [PATCH] show cursor for selection in Blender style when Ctrl is pressed while left-clicking --- src/Gui/BlenderNavigationStyle.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Gui/BlenderNavigationStyle.cpp b/src/Gui/BlenderNavigationStyle.cpp index d3b08fd252..2adb019940 100644 --- a/src/Gui/BlenderNavigationStyle.cpp +++ b/src/Gui/BlenderNavigationStyle.cpp @@ -339,6 +339,7 @@ SbBool BlenderNavigationStyle::processSoEvent(const SoEvent * const ev) //} break; case BUTTON1DOWN: + case CTRLDOWN|BUTTON1DOWN: // make sure not to change the selection when stopping spinning if (curmode == NavigationStyle::SPINNING || this->lockButton1) newmode = NavigationStyle::IDLE;