CAM: Fix origin indicator for Job
This commit fixes how origin (coordinate system) indicator looks. Before it showed as disc, and now it shows as point which is more approperiate given the context.
This commit is contained in:
@@ -132,11 +132,10 @@ class ViewProvider:
|
||||
self.axs.axisLength.setValue(1.2)
|
||||
|
||||
# enum values for SoFCPlacementIndicatorKit
|
||||
AXES = 1
|
||||
LABELS = 4
|
||||
ARROWHEADS = 8
|
||||
|
||||
self.axs.parts.setValue(AXES | LABELS | ARROWHEADS)
|
||||
parts = FreeCADGui.PlacementIndicatorParts
|
||||
self.axs.parts.setValue(
|
||||
parts.Axes | parts.Labels | parts.ArrowHeads | parts.OriginIndicator
|
||||
)
|
||||
|
||||
self.sep.addChild(self.axs)
|
||||
self.switch.addChild(self.sep)
|
||||
|
||||
Reference in New Issue
Block a user