Add noWrap to all labels in configurationMenu

CURA-8941
This commit is contained in:
Jaime van Kessel 2022-02-22 10:55:22 +01:00
parent 9acf35936b
commit 8cf9fe7941

View file

@ -207,6 +207,7 @@ Cura.ExpandablePopup
text: model.material_name text: model.material_name
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
wrapMode: Text.NoWrap
visible: !materialBrandNameLabel.visible && !truncated visible: !materialBrandNameLabel.visible && !truncated
} }
@ -217,6 +218,7 @@ Cura.ExpandablePopup
text: model.material_type text: model.material_type
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
wrapMode: Text.NoWrap
visible: !materialBrandNameLabel.visible && !materialNameLabel.visible visible: !materialBrandNameLabel.visible && !materialNameLabel.visible
} }
// Label that shows the name of the variant // Label that shows the name of the variant
@ -228,6 +230,7 @@ Cura.ExpandablePopup
text: model.variant text: model.variant
elide: Text.ElideRight elide: Text.ElideRight
wrapMode: Text.NoWrap
font: UM.Theme.getFont("default_bold") font: UM.Theme.getFont("default_bold")
Layout.preferredWidth: parent.width Layout.preferredWidth: parent.width
} }