diff --git a/resources/qml/SidebarHeader.qml b/resources/qml/SidebarHeader.qml index 20ee5f66cd..b8ae3933a4 100644 --- a/resources/qml/SidebarHeader.qml +++ b/resources/qml/SidebarHeader.qml @@ -285,7 +285,16 @@ Column ToolButton { id: globalProfileSelection - text: Cura.MachineManager.activeQualityName + text: { + var result = Cura.MachineManager.activeQualityName; + if (Cura.MachineManager.activeQualityLayerHeight > 0) { + result += " "; + result += " - "; + result += Cura.MachineManager.activeQualityLayerHeight + "mm"; + result += ""; + } + return result; + } enabled: !extrudersList.visible || base.currentExtruderIndex > -1 width: parent.width * 0.55 + UM.Theme.getSize("default_margin").width