diff options
author | Papoteur <papoteur@mageia.org> | 2019-03-26 13:39:21 +0100 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2019-03-26 14:23:39 +0100 |
commit | d45b362589c6cf7209246414c856ce63159bca39 (patch) | |
tree | 2f15d90dad05ee106442116ae7c579b0627c8837 /qml/mw-ui.qml | |
parent | 068daa2d820f4344c695c37118d2f7eddd4661ce (diff) | |
download | mageiawelcome-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
Diffstat (limited to 'qml/mw-ui.qml')
-rw-r--r-- | qml/mw-ui.qml | 6 |
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" } } } } |