diff options
author | Papoteur <papoteur@mageia.org> | 2018-12-09 10:14:41 +0100 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2018-12-17 10:19:29 +0100 |
commit | c468ac8b953cea3ca5fee4480893014a3d373058 (patch) | |
tree | 0d5c10ad9ce53958ad882ab53651b923a7612cf6 /qml | |
parent | 1fe8e9cd14b74df31d8ce9f67c4c287b2aed1f37 (diff) | |
download | mageiawelcome-c468ac8b953cea3ca5fee4480893014a3d373058.tar mageiawelcome-c468ac8b953cea3ca5fee4480893014a3d373058.tar.gz mageiawelcome-c468ac8b953cea3ca5fee4480893014a3d373058.tar.bz2 mageiawelcome-c468ac8b953cea3ca5fee4480893014a3d373058.tar.xz mageiawelcome-c468ac8b953cea3ca5fee4480893014a3d373058.zip |
Better text in Applications slide
Diffstat (limited to 'qml')
-rw-r--r-- | qml/mw-ui.qml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml index 938073e..69ac115 100644 --- a/qml/mw-ui.qml +++ b/qml/mw-ui.qml @@ -29,7 +29,7 @@ Rectangle { id: slideshow property Item displayItem: null anchors {left: parent.left; top: buttonbox.bottom; bottom: parent.bottom; right: parent.right} - color: "blue" + color: "#2397D4" width: parent.width ObjectModel { @@ -442,7 +442,7 @@ It is highly recommended that you update your system regularly. An Update icon w height: 60 color: "gold" Label {anchors {verticalCenter: parent.verticalCenter;} - text: qsTr("Here is a small selection of popular applications - any of which may be installed at this point.")+"<BR />"+"Be sure you have enabled <i>online repositories</i>" + text: qsTr("Here is a small selection of popular applications - any of which may be installed at this point.")+"<BR />"+"Be sure you have enabled <i>Media sources</i>" textFormat: Text.RichText } } @@ -562,6 +562,7 @@ It is highly recommended that you update your system regularly. An Update icon w id: repotag Rectangle { color: "red" + radius: 5 width: 70; height: 20 Label { anchors.centerIn: parent @@ -750,4 +751,12 @@ It is highly recommended that you update your system regularly. An Update icon w } } } + Row { + anchors.right: box.right + anchors.bottom: box.bottom + CheckBox { + text: qsTr("Show this window at startup") + checked: startupcheck + } + } } |