mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 02:37:49 -06:00
Only reset the setting for the currently selected extruder.
CURA-2640 Restore to default not per extruder
This commit is contained in:
parent
3a55ec324c
commit
79a62ec45f
1 changed files with 2 additions and 1 deletions
|
@ -387,7 +387,8 @@ class MachineManager(QObject):
|
||||||
top_container.removeInstance(key, postpone_emit=True)
|
top_container.removeInstance(key, postpone_emit=True)
|
||||||
send_emits_containers.append(top_container)
|
send_emits_containers.append(top_container)
|
||||||
|
|
||||||
for stack in ExtruderManager.getInstance().getMachineExtruders(self._global_container_stack.getId()):
|
stack = ExtruderManager.getInstance().getActiveExtruderStack()
|
||||||
|
if stack:
|
||||||
container = stack.getTop()
|
container = stack.getTop()
|
||||||
container.removeInstance(key, postpone_emit=True)
|
container.removeInstance(key, postpone_emit=True)
|
||||||
send_emits_containers.append(container)
|
send_emits_containers.append(container)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue