From 70915a821f1153324bf7013a1a8e25cfb98da2bb Mon Sep 17 00:00:00 2001 From: "mark%moxienet.com" Date: Mon, 28 Aug 2006 15:31:07 +0000 Subject: [PATCH] 347626 Touchpad (two-finger) scrolling too fast in trees, lists, and web apps. Disable pixel-scrolling until we can come up with a better plan. r=roc sr=roc --- widget/src/mac/nsMacWindow.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/widget/src/mac/nsMacWindow.cpp b/widget/src/mac/nsMacWindow.cpp index 2c8d9e5d75b..adfa548ba8d 100644 --- a/widget/src/mac/nsMacWindow.cpp +++ b/widget/src/mac/nsMacWindow.cpp @@ -616,7 +616,10 @@ nsresult nsMacWindow::StandardCreate(nsIWidget *aParent, mWindowType != eWindowType_java) { const EventTypeSpec kScrollEventList[] = { { kEventClassMouse, kEventMouseWheelMoved }, +#if 0 + // Disabled due to bug 347626 { kEventClassMouse, kEventMouseScroll }, +#endif }; static EventHandlerUPP sScrollEventHandlerUPP;