mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
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
This commit is contained in:
parent
83e30b7cf1
commit
f5457504d3
1 changed files with 0 additions and 2 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue