From 4dbc36799bf215f44ac9f81cddfe393c337e8a3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C3=A9cureuil?= Date: Sun, 14 Feb 2021 18:57:55 +0100 Subject: Add fixes from upstream from auroud_85 --- Background.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Background.qml') 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 -- cgit v1.2.1