mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-14 18:27:51 -06:00
Fix: Group models were not slicable
CURA-5082
This commit is contained in:
parent
516772e1f7
commit
09d01f2207
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ class BuildVolume(SceneNode):
|
|||
# Group nodes should override the _outside_buildarea property of their children.
|
||||
for group_node in group_nodes:
|
||||
for child_node in group_node.getAllChildren():
|
||||
child_node.setOutsideBuildArea(group_node.isOutsideBuildArea)
|
||||
child_node.setOutsideBuildArea(group_node.isOutsideBuildArea())
|
||||
|
||||
## Update the outsideBuildArea of a single node, given bounds or current build volume
|
||||
def checkBoundsAndUpdate(self, node: CuraSceneNode, bounds: Optional[AxisAlignedBox] = None):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue