mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Add Ultimaker S5 for printer type detection
CURA-5221
This commit is contained in:
parent
95a26837b6
commit
f92985b4ac
1 changed files with 6 additions and 1 deletions
|
|
@ -255,7 +255,12 @@ Cura.MachineAction
|
||||||
} else if(base.selectedDevice.printerType == "ultimaker3_extended")
|
} else if(base.selectedDevice.printerType == "ultimaker3_extended")
|
||||||
{
|
{
|
||||||
return catalog.i18nc("@label", "Ultimaker 3 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'
|
return catalog.i18nc("@label", "Unknown") // We have no idea what type it is. Should not happen 'in the field'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue