diff --git a/Modules/Settings/Tabs/ScreenRecorder.qml b/Modules/Settings/Tabs/ScreenRecorder.qml index 6376087..991e34b 100644 --- a/Modules/Settings/Tabs/ScreenRecorder.qml +++ b/Modules/Settings/Tabs/ScreenRecorder.qml @@ -131,7 +131,7 @@ ColumnLayout { to: 144 stepSize: 1 value: Settings.data.screenRecorder.frameRate - onMoved: Settings.data.screenRecorder.frameRate = Math.round(value) + onPressedChanged: Settings.data.screenRecorder.frameRate = Math.round(value) cutoutColor: Colors.backgroundPrimary } } diff --git a/Modules/Settings/Tabs/Wallpaper.qml b/Modules/Settings/Tabs/Wallpaper.qml index cc94974..c9bf5ae 100644 --- a/Modules/Settings/Tabs/Wallpaper.qml +++ b/Modules/Settings/Tabs/Wallpaper.qml @@ -157,7 +157,7 @@ ColumnLayout { to: 900 stepSize: 10 value: Settings.data.wallpaper.randomInterval - onMoved: Settings.data.wallpaper.randomInterval = Math.round(value) + onPressedChanged: Settings.data.wallpaper.randomInterval = Math.round(value) cutoutColor: Colors.backgroundPrimary } } @@ -300,7 +300,7 @@ ColumnLayout { to: 500 stepSize: 5 value: Settings.data.wallpaper.swww.transitionFps - onMoved: Settings.data.wallpaper.swww.transitionFps = Math.round(value) + onPressedChanged: Settings.data.wallpaper.swww.transitionFps = Math.round(value) cutoutColor: Colors.backgroundPrimary } } @@ -346,7 +346,7 @@ ColumnLayout { to: 10 stepSize: 0.05 value: Settings.data.wallpaper.swww.transitionDuration - onMoved: Settings.data.wallpaper.swww.transitionDuration = value + onPressedChanged: Settings.data.wallpaper.swww.transitionDuration = value cutoutColor: Colors.backgroundPrimary } }