Add Ultimaker S5 for printer type detection

CURA-5221
This commit is contained in:
Lipu Fei 2018-04-23 11:57:00 +02:00
parent 95a26837b6
commit f92985b4ac

View file

@ -255,7 +255,12 @@ Cura.MachineAction
} else if(base.selectedDevice.printerType == "ultimaker3_extended")
{
return catalog.i18nc("@label", "Ultimaker 3 Extended")
} else
}
else if (base.selectedDevice.printerType == "ultimaker_s5")
{
return catalog.i18nc("@label", "Ultimaker S5")
}
else
{
return catalog.i18nc("@label", "Unknown") // We have no idea what type it is. Should not happen 'in the field'
}