From 91edf5589ea63cd283d9d85bd8f8563df6f73798 Mon Sep 17 00:00:00 2001 From: Jack Ha Date: Thu, 6 Apr 2017 16:01:57 +0200 Subject: [PATCH] Fixed outside boundary check boo boo. CURA-3239 --- cura/BuildVolume.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 0ca4550d7f..ab756d133e 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -208,7 +208,7 @@ class BuildVolume(SceneNode): # Mark the node as outside the build volume if the bounding box test fails. if build_volume_bounding_box.intersectsBox(bbox) != AxisAlignedBox.IntersectionResult.FullIntersection: node._outside_buildarea = True - break + continue convex_hull = node.callDecoration("getConvexHull") if convex_hull: @@ -220,7 +220,7 @@ class BuildVolume(SceneNode): if overlap is None: continue node._outside_buildarea = True - break + continue # Group nodes should override the _outside_buildarea property of their children. for group_node in group_nodes: