From f270bcd013057ed48a4f6a0ad85617cf280ee550 Mon Sep 17 00:00:00 2001 From: Antony Baker Date: Sun, 23 Dec 2018 14:17:20 +0000 Subject: Welcome: Properly align centred text. Also change bold to demibold (less harsh contrast). --- qml/mw-ui.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml index d7f75a1..ae6d57b 100644 --- a/qml/mw-ui.qml +++ b/qml/mw-ui.qml @@ -64,14 +64,16 @@ Rectangle { Label { //: the %1 will be replaced with the user name + anchors.horizontalCenter: parent.horizontalCenter horizontalAlignment: TextInput.AlignHCenter - x:85 text: qsTr("Welcome to Mageia, %1").arg(user)+'\n' - font.bold: true; font.pointSize: 14 + font.weight: Font.DemiBold + font.pixelSize: Qt.application.font.pixelSize * 1.5 } Label { horizontalAlignment: TextInput.AlignHCenter + anchors.horizontalCenter: parent.horizontalCenter text: qsTr("We are going to guide you through a few important steps and help
you with the configuration of your newly installed system.

Now, click on Media sources to go to the first step."); textFormat: Text.RichText } -- cgit v1.2.1