mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-20 01:09:06 +08: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
@ -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…
x
Reference in New Issue
Block a user