summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageia.org>2019-03-26 13:39:21 +0100
committerPapoteur <papoteur@mageia.org>2019-03-26 14:23:39 +0100
commitd45b362589c6cf7209246414c856ce63159bca39 (patch)
tree2f15d90dad05ee106442116ae7c579b0627c8837
parent068daa2d820f4344c695c37118d2f7eddd4661ce (diff)
downloadmageiawelcome-d45b362589c6cf7209246414c856ce63159bca39.tar
mageiawelcome-d45b362589c6cf7209246414c856ce63159bca39.tar.gz
mageiawelcome-d45b362589c6cf7209246414c856ce63159bca39.tar.bz2
mageiawelcome-d45b362589c6cf7209246414c856ce63159bca39.tar.xz
mageiawelcome-d45b362589c6cf7209246414c856ce63159bca39.zip
Invert the slide background gradient. Adapt it to window size
-rw-r--r--qml/mw-ui.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml
index dcefa43..0286384 100644
--- a/qml/mw-ui.qml
+++ b/qml/mw-ui.qml
@@ -29,10 +29,10 @@ Rectangle {
id: slidebackground
LinearGradient {
start: Qt.point(0, 0)
- end: Qt.point(0, 800)
+ end: Qt.point(0, box.height)
gradient: Gradient {
- GradientStop { position: 0.0; color: "#2397D4" }
- GradientStop { position: 1.0; color: "#262F45" }
+ GradientStop { position: 1.0; color: "#2397D4" }
+ GradientStop { position: 0.0; color: "#262F45" }
}
}
}