mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 06:45:09 -06: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
|
||||
{
|
||||
text: model.name + " - " + model.layer_height
|
||||
text: model.name + (model.layer_height != "" ? (" - " + model.layer_height) : "")
|
||||
checkable: true
|
||||
checked: Cura.MachineManager.activeQualityChangesId == "" && Cura.MachineManager.activeQualityType == model.metadata.quality_type
|
||||
exclusiveGroup: group
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue