glutin: Decrease the scrolling speed.

This commit is contained in:
Patrick Walton 2015-04-10 10:30:29 -07:00
parent aee7f5772e
commit 9f3b308381

View file

@ -190,7 +190,7 @@ impl Window {
}
} else {
let dx = 0.0;
let dy = (delta as f32) * 30.0;
let dy = delta as f32;
self.scroll_window(dx, dy);
}
},