summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageia.org>2018-12-09 13:55:11 +0100
committerPapoteur <papoteur@mageia.org>2018-12-15 15:46:34 +0100
commit34323be449588f595d1acaad5d56869a91353ad6 (patch)
treee3052f564205b442bed4c3c0c1daca8078b6063d
parentea8a12ebbbf0be656939baeb520876a601bfb456 (diff)
downloadmageiawelcome-34323be449588f595d1acaad5d56869a91353ad6.tar
mageiawelcome-34323be449588f595d1acaad5d56869a91353ad6.tar.gz
mageiawelcome-34323be449588f595d1acaad5d56869a91353ad6.tar.bz2
mageiawelcome-34323be449588f595d1acaad5d56869a91353ad6.tar.xz
mageiawelcome-34323be449588f595d1acaad5d56869a91353ad6.zip
Better presentation of applications list
-rw-r--r--qml/mw-ui.qml16
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
}