diff --git a/ports/glutin/window.rs b/ports/glutin/window.rs index 27938ee33f4..1732833e246 100644 --- a/ports/glutin/window.rs +++ b/ports/glutin/window.rs @@ -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); } },