diff options
author | Papoteur <papoteur@mageia.org> | 2020-06-20 08:12:44 +0200 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2020-06-20 08:12:44 +0200 |
commit | f23ebca9ad3ced97a0bc3ab0cc3ecaa0d52849f9 (patch) | |
tree | 7e935dc53180d5f83e57b51c17eed3b178b99b84 | |
parent | 90469a9bcf349365cc9f4ab6ed5ccfd542b41f9a (diff) | |
download | mageiawelcome-f23ebca9ad3ced97a0bc3ab0cc3ecaa0d52849f9.tar mageiawelcome-f23ebca9ad3ced97a0bc3ab0cc3ecaa0d52849f9.tar.gz mageiawelcome-f23ebca9ad3ced97a0bc3ab0cc3ecaa0d52849f9.tar.bz2 mageiawelcome-f23ebca9ad3ced97a0bc3ab0cc3ecaa0d52849f9.tar.xz mageiawelcome-f23ebca9ad3ced97a0bc3ab0cc3ecaa0d52849f9.zip |
Doesn't display live as user
-rw-r--r-- | qml/mw-ui.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml index 384037d..aaaa5da 100644 --- a/qml/mw-ui.qml +++ b/qml/mw-ui.qml @@ -87,7 +87,7 @@ Rectangle { //: the %1 will be replaced with the user name anchors.horizontalCenter: parent.horizontalCenter horizontalAlignment: TextInput.AlignHCenter - text: qsTr("Welcome to Mageia, %1").arg(user)+'\n' + text: (user == 'live' ? qsTr("Welcome to Mageia") : qsTr("Welcome to Mageia, %1").arg(user)+'\n') font.weight: Font.DemiBold font.pixelSize: Qt.application.font.pixelSize * 1.5 color: "white" |