mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 14:35:56 +08:00
Merge branch 'CURA-6118_add_experimental_tag_on_stage_panel' of github.com:Ultimaker/Cura
This commit is contained in:
commit
2f43339434
@ -20,7 +20,7 @@ Menu
|
|||||||
text:
|
text:
|
||||||
{
|
{
|
||||||
var full_text = (model.layer_height != "") ? model.name + " - " + model.layer_height + model.layer_height_unit : model.name
|
var full_text = (model.layer_height != "") ? model.name + " - " + model.layer_height + model.layer_height_unit : model.name
|
||||||
full_text += model.is_experimental ? " - Experimental" : ""
|
full_text += model.is_experimental ? " - " + catalog.i18nc("@label", "Experimental") : ""
|
||||||
return full_text
|
return full_text
|
||||||
}
|
}
|
||||||
checkable: true
|
checkable: true
|
||||||
|
@ -24,6 +24,7 @@ RowLayout
|
|||||||
if (!Cura.MachineManager.hasNotSupportedQuality)
|
if (!Cura.MachineManager.hasNotSupportedQuality)
|
||||||
{
|
{
|
||||||
text += " " + layerHeight.properties.value + "mm"
|
text += " " + layerHeight.properties.value + "mm"
|
||||||
|
text += Cura.MachineManager.isActiveQualityExperimental ? " - " + catalog.i18nc("@label", "Experimental") : ""
|
||||||
}
|
}
|
||||||
return text
|
return text
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user