From 1f19e028d58d22e5ce8a19068f94acf50b0122ea Mon Sep 17 00:00:00 2001 From: daboe01 Date: Wed, 13 Feb 2013 19:07:06 +0100 Subject: [PATCH] CPWebView scrollwheel fix --- AppKit/CPWebView.j | 1 + 1 file changed, 1 insertion(+) diff --git a/AppKit/CPWebView.j b/AppKit/CPWebView.j index 57717d744..af514ff75 100644 --- a/AppKit/CPWebView.j +++ b/AppKit/CPWebView.j @@ -258,6 +258,7 @@ CPWebViewAppKitScrollMaxPollCount = 3; }; win.addEventListener("DOMMouseScroll", scrollEventHandler, false); + win.addEventListener("wheel", scrollEventHandler, false); } }