summaryrefslogtreecommitdiffstats
path: root/Background.qml
diff options
context:
space:
mode:
authorNicolas Lécureuil <neoclust@mageia.org>2021-02-14 18:57:55 +0100
committerNicolas Lécureuil <neoclust@mageia.org>2021-02-14 18:57:55 +0100
commit4dbc36799bf215f44ac9f81cddfe393c337e8a3c (patch)
treed68ee1d34140a86d6c796d1028e54f24318d40dc /Background.qml
parent828de2993de509f8805eb63d203e4c0ee9fdb3fa (diff)
downloadmageia-sddm-4dbc36799bf215f44ac9f81cddfe393c337e8a3c.tar
mageia-sddm-4dbc36799bf215f44ac9f81cddfe393c337e8a3c.tar.gz
mageia-sddm-4dbc36799bf215f44ac9f81cddfe393c337e8a3c.tar.bz2
mageia-sddm-4dbc36799bf215f44ac9f81cddfe393c337e8a3c.tar.xz
mageia-sddm-4dbc36799bf215f44ac9f81cddfe393c337e8a3c.zip
Add fixes from upstream from auroud_85
Diffstat (limited to 'Background.qml')
-rw-r--r--Background.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/Background.qml b/Background.qml
index a6a85c7..5a38415 100644
--- a/Background.qml
+++ b/Background.qml
@@ -43,7 +43,7 @@ FocusScope {
states: [
State {
name: "imageBackground"
- when: sceneBackgroundType == "image"
+ when: sceneBackgroundType === "image"
PropertyChanges {
target: sceneColorBackground
visible: false
@@ -55,7 +55,7 @@ FocusScope {
},
State {
name: "colorBackground"
- when: sceneBackgroundType != "image"
+ when: sceneBackgroundType !== "image"
PropertyChanges {
target: sceneColorBackground
visible: true