From 24b97f911f3dc2e247c1f1fbd346e0a63b34faa7 Mon Sep 17 00:00:00 2001 From: Stoppedpuma <58333920+Stoppedpuma@users.noreply.github.com> Date: Sat, 28 Mar 2026 01:54:39 +0100 Subject: [PATCH 1/2] Expand control center sensitivity clamp --- src/control_center/cc_input.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/control_center/cc_input.rs b/src/control_center/cc_input.rs index 40ed942f..2f6ce610 100644 --- a/src/control_center/cc_input.rs +++ b/src/control_center/cc_input.rs @@ -386,7 +386,7 @@ impl InputPane { }); } if let Some(old) = dev.device.accel_speed() { - drag_value(ui, "Accel Speed", old, 0.0..=1.0, 0.01, |v| { + drag_value(ui, "Accel Speed", old, -1.0..=1.0, 0.01, |v| { dev.set_accel_speed(&self.state, v) }); } From e6c80ce6054caafcf4ecd3d92a643f9d5730572b Mon Sep 17 00:00:00 2001 From: Stoppedpuma <58333920+Stoppedpuma@users.noreply.github.com> Date: Sat, 28 Mar 2026 02:05:02 +0100 Subject: [PATCH 2/2] Update valid range in book docs --- book/src/control-center.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/control-center.md b/book/src/control-center.md index 4e909037..00157689 100644 --- a/book/src/control-center.md +++ b/book/src/control-center.md @@ -334,7 +334,7 @@ Accel Profile : Dropdown: Flat or Adaptive. Shown for devices with acceleration. Accel Speed -: Numeric input (0.0 to 1.0). Shown for devices with acceleration. +: Numeric input (-1.0 to 1.0). Shown for devices with acceleration. Click Method : Dropdown: none, button-areas, clickfinger. Shown for devices that support it.