mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 07:19:05 +08:00
Fix load (3mf) groups. Also add convex hull decorator to children of node. CURA-3671
This commit is contained in:
parent
3263ca4e2d
commit
c989496a13
@ -1278,6 +1278,9 @@ class CuraApplication(QtApplication):
|
||||
# If there is no convex hull for the node, start calculating it and continue.
|
||||
if not node.getDecorator(ConvexHullDecorator):
|
||||
node.addDecorator(ConvexHullDecorator())
|
||||
for child in node.getAllChildren():
|
||||
if not child.getDecorator(ConvexHullDecorator):
|
||||
child.addDecorator(ConvexHullDecorator())
|
||||
|
||||
if node.callDecoration("isSliceable"):
|
||||
# Find node location
|
||||
|
Loading…
x
Reference in New Issue
Block a user