mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-15 14:46:02 +08:00
Dont show layer height text in profiles drop down when there is not layer height set - CURA-4451
This commit is contained in:
parent
d018e0b2bb
commit
3794ae16ae
@ -17,7 +17,7 @@ Menu
|
|||||||
|
|
||||||
MenuItem
|
MenuItem
|
||||||
{
|
{
|
||||||
text: model.name + " - " + model.layer_height
|
text: model.name + (model.layer_height != "" ? (" - " + model.layer_height) : "")
|
||||||
checkable: true
|
checkable: true
|
||||||
checked: Cura.MachineManager.activeQualityChangesId == "" && Cura.MachineManager.activeQualityType == model.metadata.quality_type
|
checked: Cura.MachineManager.activeQualityChangesId == "" && Cura.MachineManager.activeQualityType == model.metadata.quality_type
|
||||||
exclusiveGroup: group
|
exclusiveGroup: group
|
||||||
|
Loading…
x
Reference in New Issue
Block a user