mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
Fix group models bounds check. CURA-3640
This commit is contained in:
parent
5de3a614ea
commit
892140150a
1 changed files with 1 additions and 3 deletions
|
@ -201,7 +201,7 @@ class BuildVolume(SceneNode):
|
|||
if node.callDecoration("isGroup"):
|
||||
group_nodes.append(node) # Keep list of affected group_nodes
|
||||
|
||||
if node.callDecoration("isSliceable"):
|
||||
if node.callDecoration("isSliceable") or node.callDecoration("isGroup"):
|
||||
node._outside_buildarea = False
|
||||
bbox = node.getBoundingBox()
|
||||
|
||||
|
@ -220,8 +220,6 @@ class BuildVolume(SceneNode):
|
|||
if overlap is None:
|
||||
continue
|
||||
node._outside_buildarea = True
|
||||
# from UM.Logger import Logger
|
||||
# Logger.log("d", " # A node is outside build area")
|
||||
break
|
||||
|
||||
# Group nodes should override the _outside_buildarea property of their children.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue