mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-13 07:29:03 +08:00
Only 3mf nodes with mesh data are getting the sliceable object decorator. CURA-3559
This commit is contained in:
parent
2b17f9665f
commit
48c6c523ec
@ -145,7 +145,9 @@ class ThreeMFReader(MeshReader):
|
|||||||
group_decorator = GroupDecorator()
|
group_decorator = GroupDecorator()
|
||||||
um_node.addDecorator(group_decorator)
|
um_node.addDecorator(group_decorator)
|
||||||
um_node.setSelectable(True)
|
um_node.setSelectable(True)
|
||||||
# Assuming that all nodes are printable objects, affects (auto) slicing
|
if um_node.getMeshData():
|
||||||
|
# Assuming that all nodes with mesh data are printable objects
|
||||||
|
# affects (auto) slicing
|
||||||
sliceable_decorator = SliceableObjectDecorator()
|
sliceable_decorator = SliceableObjectDecorator()
|
||||||
um_node.addDecorator(sliceable_decorator)
|
um_node.addDecorator(sliceable_decorator)
|
||||||
return um_node
|
return um_node
|
||||||
|
Loading…
x
Reference in New Issue
Block a user