diff options
Diffstat (limited to 'qml')
-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 } |