Correctly wrap text body

to prevent weird alignment in welcome pages

CURA-8689
This commit is contained in:
jelle spijker 2022-11-03 10:08:00 +01:00 committed by jspijker
parent 4381a97c85
commit c8f51a6743

View File

@ -32,7 +32,9 @@ Control
{ {
UM.Label UM.Label
{ {
Layout.fillWidth: true
text: catalog.i18nc("@label", "New Ultimaker printers can be connected to Digital Factory and monitored remotely.") text: catalog.i18nc("@label", "New Ultimaker printers can be connected to Digital Factory and monitored remotely.")
wrapMode: Text.WordWrap
} }
RowLayout RowLayout
@ -84,7 +86,6 @@ Control
iconSource: UM.Theme.getIcon("LinkExternal") iconSource: UM.Theme.getIcon("LinkExternal")
isIconOnRightSide: true isIconOnRightSide: true
textFont: UM.Theme.getFont("small") textFont: UM.Theme.getFont("small")
fixedWidthMode: true
onClicked: Qt.openUrlExternally("https://support.ultimaker.com/hc/en-us/articles/360012019239?utm_source=cura&utm_medium=software&utm_campaign=onboarding-add-printer") onClicked: Qt.openUrlExternally("https://support.ultimaker.com/hc/en-us/articles/360012019239?utm_source=cura&utm_medium=software&utm_campaign=onboarding-add-printer")
} }
} }