Skip to content

Commit e3a0e8a

Browse files
committed
improv(input): adjust minimum and max speed ranges
1 parent 43c3903 commit e3a0e8a

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
@@ -63,7 +63,7 @@ fn mouse() -> Section<crate::pages::Message> {
6363
))
6464
.add(
6565
settings::item::builder(&*MOUSE_SPEED).control(widget::slider(
66-
0.0..=100.0,
66+
1.0..=80.0,
6767
(input
6868
.input_default
6969
.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)