From ad170ed85498cd5fca074532dfc4e15c828076aa Mon Sep 17 00:00:00 2001 From: daboe01 Date: Tue, 29 Oct 2013 17:33:12 +0100 Subject: [PATCH] Fixed: scroll wheel speed is way to low in firefox I increased scroll wheel speed to a sensible value --- AppKit/Platform/DOM/CPPlatformWindow+DOM.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/Platform/DOM/CPPlatformWindow+DOM.j b/AppKit/Platform/DOM/CPPlatformWindow+DOM.j index e542da819..132c1d887 100644 --- a/AppKit/Platform/DOM/CPPlatformWindow+DOM.j +++ b/AppKit/Platform/DOM/CPPlatformWindow+DOM.j @@ -913,7 +913,7 @@ var resizeTimer = nil; { // Find the scroll delta var deltaX = _DOMScrollingElement.scrollLeft - 150, - deltaY = (_DOMScrollingElement.scrollTop - 150) || (aDOMEvent.deltaY === undefined ? 0 : aDOMEvent.deltaY); + deltaY = (_DOMScrollingElement.scrollTop - 150) || (aDOMEvent.deltaY === undefined ? 0 : (aDOMEvent.deltaY*6)); // If we scroll super with momentum, // there are so many events going off that