From 19678c1126749201a8f57ac3d247297ed32a61b0 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 21 Oct 2016 14:00:43 +0200 Subject: [PATCH] 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. --- resources/qml/Menus/ProfileMenu.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/qml/Menus/ProfileMenu.qml b/resources/qml/Menus/ProfileMenu.qml index 0b2c7a5ae2..4fa7a0d3c5 100644 --- a/resources/qml/Menus/ProfileMenu.qml +++ b/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