mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-11 08:47:50 -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
|
# Find a reason not to add the node
|
||||||
if node.callDecoration("getBuildPlateNumber") != self._build_plate_number:
|
if node.callDecoration("getBuildPlateNumber") != self._build_plate_number:
|
||||||
continue
|
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
|
continue
|
||||||
node_position = node.callDecoration("getActiveExtruderPosition")
|
node_position = node.callDecoration("getActiveExtruderPosition")
|
||||||
if not stack.extruders[str(node_position)].isEnabled:
|
if not stack.extruders[str(node_position)].isEnabled:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue