mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Exclude objects outside buildplate from OneAtATimeIterator
CURA-7776
This commit is contained in:
parent
ac239e3e2a
commit
21b9c0639d
2 changed files with 6 additions and 7 deletions
|
@ -205,10 +205,6 @@ class StartSliceJob(Job):
|
|||
for node in OneAtATimeIterator(self._scene.getRoot()):
|
||||
temp_list = []
|
||||
|
||||
# Node can't be printed, so don't bother sending it.
|
||||
if getattr(node, "_outside_buildarea", False):
|
||||
continue
|
||||
|
||||
# Filter on current build plate
|
||||
build_plate_number = node.callDecoration("getBuildPlateNumber")
|
||||
if build_plate_number is not None and build_plate_number != self._build_plate_number:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue