Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2020-09-02 15:19:38 +0300
committerJaime van Kessel <nallath@gmail.com>2020-09-02 15:19:38 +0300
commit09066f2744cd11852131b6678b2e141713c72deb (patch)
tree4fdc4256b06c6d5a541f2f42df83881b27aafb64
parent8f5c62c68d4e5b3d626adbdc064de2220acc3bfe (diff)
Don't mark children nodes in a group below the buildplate
Fixes #8268
-rwxr-xr-xcura/BuildVolume.py2
1 files changed, 1 insertions, 1 deletions
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