Fixed: scroll wheel speed is way to low in firefox

I increased scroll wheel speed to a sensible value
This commit is contained in:
daboe01
2013-10-29 17:33:12 +01:00
parent 0ac74fe16e
commit ad170ed854
+1 -1
View File
@@ -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