mirror of
https://github.com/servo/servo.git
synced 2025-09-03 19:48:21 +01:00
glutin: Decrease the scrolling speed.
This commit is contained in:
parent
aee7f5772e
commit
9f3b308381
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ impl Window {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
let dx = 0.0;
|
let dx = 0.0;
|
||||||
let dy = (delta as f32) * 30.0;
|
let dy = delta as f32;
|
||||||
self.scroll_window(dx, dy);
|
self.scroll_window(dx, dy);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue