Browse Source

Display layer height after profile name in drop-down

There is no styling in this drop-down, as it is provided by the OS. Just a dash and the layer height will do.

Contributes to issue CURA-2737.
Ghostkeeper 8 years ago
parent
commit
19678c1126
1 changed files with 2 additions and 2 deletions
  1. 2 2
      resources/qml/Menus/ProfileMenu.qml

+ 2 - 2
resources/qml/Menus/ProfileMenu.qml

@@ -17,7 +17,7 @@ Menu
 
         MenuItem
         {
-            text: model.name
+            text: model.name + " - " + model.layer_height
             checkable: true
             checked: Cura.MachineManager.activeQualityChangesId == "empty_quality_changes" && Cura.MachineManager.activeQualityType == model.metadata.quality_type
             exclusiveGroup: group
@@ -40,7 +40,7 @@ Menu
 
         MenuItem
         {
-            text: model.name
+            text: model.name + " - " + model.layer_height
             checkable: true
             checked: Cura.MachineManager.globalQualityId == model.id
             exclusiveGroup: group