mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-27 04:41:06 -07: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue