From f5457504d32e412d727a3e3861e2b1f8eaab9adb Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 4 Apr 2016 11:25:41 +0200 Subject: [PATCH] One at a time iterator no longer ignores objects higher than gantry height Due to changes in build volume, those objects are already ignored. CURA-1224 --- cura/OneAtATimeIterator.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/cura/OneAtATimeIterator.py b/cura/OneAtATimeIterator.py index 6ecd49d8b3..b700fe83b3 100644 --- a/cura/OneAtATimeIterator.py +++ b/cura/OneAtATimeIterator.py @@ -21,8 +21,6 @@ class OneAtATimeIterator(Iterator.Iterator): if not type(node) is SceneNode: continue - if node.getBoundingBox().height > Application.getInstance().getMachineManager().getWorkingProfile().getSettingValue("gantry_height"): - return if node.callDecoration("getConvexHull"): node_list.append(node)