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
This commit is contained in:
wmayer
2024-04-01 19:19:39 +02:00
committed by wwmayer
parent a7470332f7
commit 3b39c0885b

View File

@@ -78,7 +78,7 @@ public:
private:
enum {
Synchronize = 0,
SelectObject = 1
SelectObject = 4 // must be higher than 3 (EditMode::Color)
};
void updatePlacement(bool transaction);
};