From 09066f2744cd11852131b6678b2e141713c72deb Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 2 Sep 2020 14:19:38 +0200 Subject: Don't mark children nodes in a group below the buildplate Fixes #8268 --- cura/BuildVolume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 373f708389..81a1eed6ad 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -272,7 +272,7 @@ class BuildVolume(SceneNode): continue # If the entire node is below the build plate, still mark it as outside. node_bounding_box = node.getBoundingBox() - if node_bounding_box and node_bounding_box.top < 0: + if node_bounding_box and node_bounding_box.top < 0 and not node.getParent().callDecoration("isGroup"): node.setOutsideBuildArea(True) continue # Mark the node as outside build volume if the set extruder is disabled -- cgit v1.2.3