1
0
Fork 0
forked from wry/wry

Expand control center sensitivity clamp

This commit is contained in:
Stoppedpuma 2026-03-28 01:54:39 +01:00 committed by Julian Orth
parent 9d4ae64237
commit 24b97f911f

View file

@ -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)
});
}