diff options
author | Papoteur <papoteur@mageia.org> | 2018-12-09 13:55:11 +0100 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2018-12-17 10:19:29 +0100 |
commit | 618702d35d0384db47185162ab1cb211cce45d02 (patch) | |
tree | 2b18ffafdd404e1abb45a7cbd5f6a71824e34f67 | |
parent | 86bb8ab5bcd4c8920fbe24576e97669d8bd8e84c (diff) | |
download | mageiawelcome-618702d35d0384db47185162ab1cb211cce45d02.tar mageiawelcome-618702d35d0384db47185162ab1cb211cce45d02.tar.gz mageiawelcome-618702d35d0384db47185162ab1cb211cce45d02.tar.bz2 mageiawelcome-618702d35d0384db47185162ab1cb211cce45d02.tar.xz mageiawelcome-618702d35d0384db47185162ab1cb211cce45d02.zip |
Better presentation of applications list
-rw-r--r-- | qml/mw-ui.qml | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml index 27f2943..9985b41 100644 --- a/qml/mw-ui.qml +++ b/qml/mw-ui.qml @@ -88,6 +88,7 @@ and help you with the configuration of your newly installed system. GridLayout { columns: 3 Rectangle {id: coreBg + radius: 5 LinearGradient { anchors.fill: parent start: Qt.point(0, 0) @@ -97,7 +98,6 @@ and help you with the configuration of your newly installed system. GradientStop { position: 1.0; color: "green" } } } - radius: 5 width: 80; height: 20 Layout.alignment: Qt.AlignTop @@ -115,6 +115,7 @@ and help you with the configuration of your newly installed system. } Rectangle {id: nonfreeBg + radius: 5 LinearGradient { anchors.fill: parent start: Qt.point(0, 0) @@ -124,7 +125,6 @@ and help you with the configuration of your newly installed system. GradientStop { position: 1.0; color: "darkred" } } } - radius: 5 width: 80; height: 20 Layout.alignment: Qt.AlignTop Layout.fillWidth: true @@ -151,6 +151,7 @@ and help you with the configuration of your newly installed system. } } Rectangle {id: taintedBg + radius: 5 LinearGradient { anchors.fill: parent start: Qt.point(0, 0) @@ -160,7 +161,6 @@ and help you with the configuration of your newly installed system. GradientStop { position: 1.0; color: "darkred" } } } - radius: 5 width: 80; height: 20 Layout.alignment: Qt.AlignTop Layout.fillWidth: true @@ -483,7 +483,7 @@ It is highly recommended that you update your system regularly. An Update icon w delegate: Rectangle{ width: parent.width height: 25 - color:"white" + color:"transparent" Label {text: modelData.name ;} MouseArea { anchors.centerIn: parent @@ -594,12 +594,14 @@ It is highly recommended that you update your system regularly. An Update icon w } } - Flickable { - height: 350 - width: 500 + Rectangle { + height: view.height-warning.height + width: view.width-200 + color: "transparent" ListView { id: applicationsListView anchors.fill: parent + clip: true model: appListDM spacing: 5 } |