Commit a02d956 1 parent 2f7411a commit a02d956 Copy full SHA for a02d956
File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ mod mouse;
20
20
mod touchpad;
21
21
22
22
crate :: cache_dynamic_lazy! {
23
- static ACCELERAION_DESC : String = fl!( "acceleration-desc" ) ;
23
+ static ACCELERATION_DESC : String = fl!( "acceleration-desc" ) ;
24
24
static DISABLE_WHILE_TYPING : String = fl!( "disable-while-typing" ) ;
25
25
static PRIMARY_BUTTON : String = fl!( "primary-button" ) ;
26
26
static SCROLLING_NATURAL_DESC : String = fl!( "scrolling" , "natural-desc" ) ;
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ fn mouse() -> Section<crate::pages::Message> {
48
48
super :: PRIMARY_BUTTON . as_str( ) . into( ) ,
49
49
MOUSE_SPEED . as_str( ) . into( ) ,
50
50
MOUSE_ACCELERATION . as_str( ) . into( ) ,
51
- super :: ACCELERAION_DESC . as_str( ) . into( ) ,
51
+ super :: ACCELERATION_DESC . as_str( ) . into( ) ,
52
52
] )
53
53
. view :: < Page > ( |binder, _page, section| {
54
54
let input = binder. page :: < super :: Page > ( ) . expect ( "input page not found" ) ;
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ fn touchpad() -> Section<crate::pages::Message> {
91
91
)
92
92
. add (
93
93
settings:: item:: builder ( & * TOUCHPAD_ACCELERAION )
94
- . description ( & * super :: ACCELERAION_DESC )
94
+ . description ( & * super :: ACCELERATION_DESC )
95
95
. toggler (
96
96
input
97
97
. input_touchpad
You can’t perform that action at this time.
0 commit comments