From bbfcab9cc9bac6be057f0cb388daacd27f374635 Mon Sep 17 00:00:00 2001 From: hat3ph <88069788+hat3ph@users.noreply.github.com> Date: Tue, 30 May 2023 22:05:14 +0800 Subject: [PATCH] WallpaperFader.qml:132: ReferenceError: Units is not defined Fix duration ReferenceError --- components/WallpaperFader.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/WallpaperFader.qml b/components/WallpaperFader.qml index 7369c49..412e9a8 100644 --- a/components/WallpaperFader.qml +++ b/components/WallpaperFader.qml @@ -128,13 +128,13 @@ Item { NumberAnimation { target: mainStack property: "opacity" - duration: units.longDuration + duration: 500 easing.type: Easing.InOutQuad } NumberAnimation { target: footer property: "opacity" - duration: units.longDuration + duration: 500 easing.type: Easing.InOutQuad } }