mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
CURA-4400 fixed wrongly converted expression
This commit is contained in:
parent
552618fcd4
commit
3edc96ec8f
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ class StartSliceJob(Job):
|
|||
# Find a reason not to add the node
|
||||
if node.callDecoration("getBuildPlateNumber") != self._build_plate_number:
|
||||
continue
|
||||
if getattr(node, "_outside_buildarea", False) and is_non_printing_mesh:
|
||||
if getattr(node, "_outside_buildarea", False) and not is_non_printing_mesh:
|
||||
continue
|
||||
node_position = node.callDecoration("getActiveExtruderPosition")
|
||||
if not stack.extruders[str(node_position)].isEnabled:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue