mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Also omit support meshes from used extruders list
Their own extruder doesn't get used necessarily, because these meshes are then printed using the support extruder. Contributes to issue CURA-6440.
This commit is contained in:
parent
8da1f8fa7d
commit
8c5f871185
1 changed files with 1 additions and 1 deletions
|
|
@ -229,7 +229,7 @@ class ExtruderManager(QObject):
|
||||||
mesh_list = []
|
mesh_list = []
|
||||||
for mesh in meshes:
|
for mesh in meshes:
|
||||||
stack = mesh.callDecoration("getStack")
|
stack = mesh.callDecoration("getStack")
|
||||||
if stack is not None and stack.getProperty("anti_overhang_mesh", "value"):
|
if stack is not None and (stack.getProperty("anti_overhang_mesh", "value") or stack.getProperty("support_mesh", "value")):
|
||||||
continue
|
continue
|
||||||
mesh_list.append(mesh)
|
mesh_list.append(mesh)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue