We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ab1fcc commit 779e5ddCopy full SHA for 779e5dd
1 file changed
resources/qml/ExtruderTabs.qml
@@ -101,7 +101,9 @@ TabRow
101
102
property var extruderStack:
103
{
104
- if (CuraSDKVersion >= "6.2.0") {
+ if (CuraSDKVersion >= "7.0.0") {
105
+ return (Cura.MachineManager.activeMachine != null) ? Cura.MachineManager.activeMachine.extruderList[model.index] : undefined;
106
+ } else if (CuraSDKVersion >= "6.2.0") {
107
return (Cura.MachineManager.activeMachine != null) ? Cura.MachineManager.activeMachine.extruders[model.index] : undefined;
108
} else {
109
return Cura.MachineManager.getExtruder(model.index);
0 commit comments