mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
Fix setting extruder material diameter in Machine Settings dialog
CURA-5857 It should update the value of the selected Extruder TAB, not the active extruder on the printer.
This commit is contained in:
parent
dddda996dc
commit
6fd7b49937
1 changed files with 5 additions and 1 deletions
|
@ -410,7 +410,11 @@ Cura.MachineAction
|
|||
}
|
||||
function setValueFunction(value)
|
||||
{
|
||||
Cura.MachineManager.activeStack.compatibleMaterialDiameter = value
|
||||
if (settingsTabs.currentIndex > 0)
|
||||
{
|
||||
var extruderIndex = (settingsTabs.currentIndex - 1).toString();
|
||||
Cura.MachineManager.extruders[extruderIndex].compatibleMaterialDiameter = value;
|
||||
}
|
||||
}
|
||||
property bool isExtruderSetting: true
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue