Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjelle spijker <j.spijker@ultimaker.com>2022-11-03 12:08:00 +0300
committerjspijker <j.spijker@ultimaker.com>2022-11-03 12:08:00 +0300
commitc8f51a67431d16cd93844d2f9dde4be004959ce4 (patch)
tree07916c432ae1736e10d64b268c9d3111cbf666c3
parent4381a97c85de02d1b29a30fa7e634b0234b61b33 (diff)
Correctly wrap text body
to prevent weird alignment in welcome pages CURA-8689
-rw-r--r--resources/qml/WelcomePages/AddUltimakerPrinter.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/qml/WelcomePages/AddUltimakerPrinter.qml b/resources/qml/WelcomePages/AddUltimakerPrinter.qml
index af3b506b76..92f79e00ba 100644
--- a/resources/qml/WelcomePages/AddUltimakerPrinter.qml
+++ b/resources/qml/WelcomePages/AddUltimakerPrinter.qml
@@ -32,7 +32,9 @@ Control
{
UM.Label
{
+ Layout.fillWidth: true
text: catalog.i18nc("@label", "New Ultimaker printers can be connected to Digital Factory and monitored remotely.")
+ wrapMode: Text.WordWrap
}
RowLayout
@@ -84,7 +86,6 @@ Control
iconSource: UM.Theme.getIcon("LinkExternal")
isIconOnRightSide: true
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")
}
}