From 6ee2b3a8b4dce5d26d9e304f9462bb11e07c807e Mon Sep 17 00:00:00 2001 From: Digital Artifex <7929434+DigitalArtifex@users.noreply.github.com> Date: Tue, 25 Nov 2025 15:50:16 -0500 Subject: [PATCH] Removed binding loop in a couple of settings --- package/contents/ui/config.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/contents/ui/config.qml b/package/contents/ui/config.qml index 9a2791e..77667d9 100644 --- a/package/contents/ui/config.qml +++ b/package/contents/ui/config.qml @@ -825,7 +825,7 @@ Kirigami.FormLayout text: i18n("Play/Pause the shader") onCheckedChanged: () => { - wallpaper.configuration.running = checked; + // wallpaper.configuration.running = checked; root.cfg_running = checked; } } @@ -866,7 +866,7 @@ Kirigami.FormLayout onValueChanged: () => { mouseBiasField.text = String(value.toFixed(2)); - wallpaper.configuration.mouseBias = mouseBiasField.text; + // wallpaper.configuration.mouseBias = mouseBiasField.text; root.cfg_mouseSpeedBias = mouseBiasField.text; } } @@ -890,7 +890,7 @@ Kirigami.FormLayout text = inputValue.toFixed(2); mouseBiasSlider.value = inputValue; - wallpaper.configuration.mouseBias = inputValue; + // wallpaper.configuration.mouseBias = inputValue; root.cfg_mouseSpeedBias = inputValue; } Keys.onPressed: (event) =>