Cut: Bug fixing and Improvements

* CutGizmo: Fixed a label scale
* Fixed deselection of selected connectors, when moving the camera
* Implemented update of the settings for selected connectors
* Connector selection: Ctrl shortcut is changed to Shift to compatibility of the selection/deselection with rectangle selection
This commit is contained in:
YuSanka 2022-10-07 10:03:55 +02:00
parent 58c7d8b188
commit 74a32e3261
3 changed files with 170 additions and 67 deletions

View file

@ -222,11 +222,13 @@ private:
enum class CutConnectorType : int {
Plug
, Dowel
, Undef
};
enum class CutConnectorStyle : int {
Prizm
, Frustum
, Undef
//,Claw
};
@ -235,6 +237,7 @@ enum class CutConnectorShape : int {
, Square
, Hexagon
, Circle
, Undef
//,D-shape
};