mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-10 08:17:49 -06:00
Only check if printing extruder is enabled for printing meshes
CURA-5669
This commit is contained in:
parent
d097b06479
commit
22ccf074f3
1 changed files with 3 additions and 1 deletions
|
@ -220,8 +220,10 @@ class StartSliceJob(Job):
|
||||||
stack = global_stack
|
stack = global_stack
|
||||||
skip_group = False
|
skip_group = False
|
||||||
for node in group:
|
for node in group:
|
||||||
|
# Only check if the printing extruder is enabled for printing meshes
|
||||||
|
is_non_printing_mesh = node.callDecoration("evaluateIsNonPrintingMesh")
|
||||||
extruder_position = node.callDecoration("getActiveExtruderPosition")
|
extruder_position = node.callDecoration("getActiveExtruderPosition")
|
||||||
if not extruders_enabled[extruder_position]:
|
if not is_non_printing_mesh and not extruders_enabled[extruder_position]:
|
||||||
skip_group = True
|
skip_group = True
|
||||||
has_model_with_disabled_extruders = True
|
has_model_with_disabled_extruders = True
|
||||||
associated_disabled_extruders.add(extruder_position)
|
associated_disabled_extruders.add(extruder_position)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue