diff options
-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 + } + } } |