diff --git a/Config/BackgroundConfig.qml b/Config/BackgroundConfig.qml index 50358a6..f689ef0 100644 --- a/Config/BackgroundConfig.qml +++ b/Config/BackgroundConfig.qml @@ -2,6 +2,6 @@ import Quickshell.Io import qs.Modules JsonObject { - property int wallFadeDutation: MaterialEasing.standardTime + property int wallFadeDuration: MaterialEasing.standardTime property bool enabled: true } diff --git a/Modules/Background.qml b/Modules/Background.qml index 384b6d9..ab5041e 100644 --- a/Modules/Background.qml +++ b/Modules/Background.qml @@ -72,7 +72,7 @@ Item { Anim { target: img properties: "opacity,scale" - duration: Config.wallFadeDuration + duration: Config.background.wallFadeDuration } } }