diff options
author | Papoteur <papoteur@mageia.org> | 2018-12-09 10:14:41 +0100 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2018-12-15 15:46:34 +0100 |
commit | aaa42a183860f93c89d64a1ee1ffe25dd3cf41a1 (patch) | |
tree | d8bc1692f6c039c710cfa3014f7d3ea1b14afa63 | |
parent | 6cfa9cbbe0a036bde4af6aadfe6614b2e1479d8e (diff) | |
download | mageiawelcome-aaa42a183860f93c89d64a1ee1ffe25dd3cf41a1.tar mageiawelcome-aaa42a183860f93c89d64a1ee1ffe25dd3cf41a1.tar.gz mageiawelcome-aaa42a183860f93c89d64a1ee1ffe25dd3cf41a1.tar.bz2 mageiawelcome-aaa42a183860f93c89d64a1ee1ffe25dd3cf41a1.tar.xz mageiawelcome-aaa42a183860f93c89d64a1ee1ffe25dd3cf41a1.zip |
Better text in Applications slide
-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 + } + } } |