From 3b39c0885bad1a06018b55ea2bb454edeb9e5343 Mon Sep 17 00:00:00 2001 From: wmayer Date: Mon, 1 Apr 2024 19:19:39 +0200 Subject: [PATCH] PD: Fixes 12673: Transforming of sub-shape binder fails The problem is caused by conflicting values of the anonymous enum of ViewProviderSubShapeBinder. The solution is to set a higher value than the highest value of EditMode --- src/Mod/PartDesign/Gui/ViewProviderShapeBinder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/PartDesign/Gui/ViewProviderShapeBinder.h b/src/Mod/PartDesign/Gui/ViewProviderShapeBinder.h index b830dfd995..aef4562150 100644 --- a/src/Mod/PartDesign/Gui/ViewProviderShapeBinder.h +++ b/src/Mod/PartDesign/Gui/ViewProviderShapeBinder.h @@ -78,7 +78,7 @@ public: private: enum { Synchronize = 0, - SelectObject = 1 + SelectObject = 4 // must be higher than 3 (EditMode::Color) }; void updatePlacement(bool transaction); };