summaryrefslogtreecommitdiffstats
path: root/Background.qml
diff options
context:
space:
mode:
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