Removed binding loop in a couple of settings

This commit is contained in:
Digital Artifex
2025-11-25 15:50:16 -05:00
parent 21d550a3fe
commit 6ee2b3a8b4

View File

@@ -825,7 +825,7 @@ Kirigami.FormLayout
text: i18n("Play/Pause the shader") text: i18n("Play/Pause the shader")
onCheckedChanged: () => onCheckedChanged: () =>
{ {
wallpaper.configuration.running = checked; // wallpaper.configuration.running = checked;
root.cfg_running = checked; root.cfg_running = checked;
} }
} }
@@ -866,7 +866,7 @@ Kirigami.FormLayout
onValueChanged: () => onValueChanged: () =>
{ {
mouseBiasField.text = String(value.toFixed(2)); mouseBiasField.text = String(value.toFixed(2));
wallpaper.configuration.mouseBias = mouseBiasField.text; // wallpaper.configuration.mouseBias = mouseBiasField.text;
root.cfg_mouseSpeedBias = mouseBiasField.text; root.cfg_mouseSpeedBias = mouseBiasField.text;
} }
} }
@@ -890,7 +890,7 @@ Kirigami.FormLayout
text = inputValue.toFixed(2); text = inputValue.toFixed(2);
mouseBiasSlider.value = inputValue; mouseBiasSlider.value = inputValue;
wallpaper.configuration.mouseBias = inputValue; // wallpaper.configuration.mouseBias = inputValue;
root.cfg_mouseSpeedBias = inputValue; root.cfg_mouseSpeedBias = inputValue;
} }
Keys.onPressed: (event) => Keys.onPressed: (event) =>