Skip to content

Commit 2f7411a

Browse files
committed
improv(input): adjust minimum and max speed ranges
1 parent aa90d44 commit 2f7411a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/src/pages/input/mouse.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ fn mouse() -> Section<crate::pages::Message> {
6262
))
6363
.add(
6464
settings::item::builder(&*MOUSE_SPEED).control(widget::slider(
65-
0.0..=100.0,
65+
1.0..=80.0,
6666
(input
6767
.input_default
6868
.acceleration

app/src/pages/input/touchpad.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ fn touchpad() -> Section<crate::pages::Message> {
7878
))
7979
.add(
8080
settings::item::builder(&*TOUCHPAD_SPEED).control(widget::slider(
81-
0.0..=100.0,
81+
10.0..=90.0,
8282
(input
8383
.input_touchpad
8484
.acceleration

0 commit comments

Comments
 (0)