mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Always set the active extruder stack when loading project file settings - CURA-4482
This commit is contained in:
parent
c23c031152
commit
77cd10374c
2 changed files with 6 additions and 13 deletions
|
@ -90,7 +90,7 @@ class SliceInfo(Extension):
|
|||
# add extruder specific data to slice info
|
||||
data["extruders"] = []
|
||||
extruders = list(ExtruderManager.getInstance().getMachineExtruders(global_container_stack.getId()))
|
||||
extruders = sorted(extruders, key=lambda extruder: extruder.getMetaDataEntry("position"))
|
||||
extruders = sorted(extruders, key = lambda extruder: extruder.getMetaDataEntry("position"))
|
||||
|
||||
for extruder in extruders:
|
||||
extruder_dict = dict()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue