summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntony Baker <jasperodus@zoho.com>2018-12-23 14:17:20 +0000
committerPapoteur <papoteur@mageia.org>2018-12-25 10:19:15 +0100
commitf270bcd013057ed48a4f6a0ad85617cf280ee550 (patch)
tree29e5725b540c098cd9c8868dce47f6c3211c6567
parent6e229e8a618d3eaa4969b68b5af8a69ba436b2f3 (diff)
downloadmageiawelcome-f270bcd013057ed48a4f6a0ad85617cf280ee550.tar
mageiawelcome-f270bcd013057ed48a4f6a0ad85617cf280ee550.tar.gz
mageiawelcome-f270bcd013057ed48a4f6a0ad85617cf280ee550.tar.bz2
mageiawelcome-f270bcd013057ed48a4f6a0ad85617cf280ee550.tar.xz
mageiawelcome-f270bcd013057ed48a4f6a0ad85617cf280ee550.zip
Welcome: Properly align centred text. Also change bold to demibold (less harsh contrast).
-rw-r--r--qml/mw-ui.qml6
1 files 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<BR />you with the configuration of your newly installed system.<BR /><BR />Now, click on <i>Media sources</i> to go to the first step.");
textFormat: Text.RichText
}