From 9f3b3083817c2ac5b2aaf683c9ebe85c03571f82 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Fri, 10 Apr 2015 10:30:29 -0700 Subject: [PATCH] glutin: Decrease the scrolling speed. --- ports/glutin/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } },