From 8cf9fe79416eb370f7362f2c59cbecf6793e644b Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 22 Feb 2022 10:55:22 +0100 Subject: [PATCH] Add noWrap to all labels in configurationMenu CURA-8941 --- resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml index c9d0cd3e1b..6f7ee90733 100644 --- a/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml +++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml @@ -207,6 +207,7 @@ Cura.ExpandablePopup text: model.material_name elide: Text.ElideRight width: parent.width + wrapMode: Text.NoWrap visible: !materialBrandNameLabel.visible && !truncated } @@ -217,6 +218,7 @@ Cura.ExpandablePopup text: model.material_type elide: Text.ElideRight width: parent.width + wrapMode: Text.NoWrap visible: !materialBrandNameLabel.visible && !materialNameLabel.visible } // Label that shows the name of the variant @@ -228,6 +230,7 @@ Cura.ExpandablePopup text: model.variant elide: Text.ElideRight + wrapMode: Text.NoWrap font: UM.Theme.getFont("default_bold") Layout.preferredWidth: parent.width }