mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 11:17:49 -06:00
Use extruderList rather than extruders dictionary
The extruders dictionary has been deprecated. Done during Turbo Testing and Tooling to reduce the amount of warnings in our log.
This commit is contained in:
parent
17762cb431
commit
acc8e24cb4
1 changed files with 1 additions and 1 deletions
|
@ -1214,7 +1214,7 @@ class MachineManager(QObject):
|
|||
if self._global_container_stack is None:
|
||||
return
|
||||
if position is None:
|
||||
position_list = list(self._global_container_stack.extruders.keys())
|
||||
position_list = list(range(len(self._global_container_stack.extruderList)))
|
||||
else:
|
||||
position_list = [position]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue