Fix per extruder setting value depending on extruder count - CURA-4627

This commit is contained in:
ChrisTerBeke 2017-11-27 17:00:57 +01:00
parent 26b9fc3163
commit b74ebc57b4

View file

@ -337,7 +337,7 @@ Item
// machine gets changed.
var activeMachineId = Cura.MachineManager.activeMachineId;
if(!model.settable_per_extruder || machineExtruderCount.properties.value == 1)
if(!model.settable_per_extruder)
{
//Not settable per extruder or there only is global, so we must pick global.
return activeMachineId;