From 984973015a6b3a87e0032e33425e929aa9873209 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Mon, 31 Aug 2009 10:16:23 +0000 Subject: Increase mouse wheel scroll speed again. This should bring it up to the same speed as OS4's built-in stuff. svn path=/trunk/netsurf/; revision=9516 --- amiga/gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'amiga') diff --git a/amiga/gui.c b/amiga/gui.c index c1babc1aa..68a56a592 100755 --- a/amiga/gui.c +++ b/amiga/gui.c @@ -3224,8 +3224,8 @@ void ami_scroller_hook(struct Hook *hook,Object *object,struct IntuiMessage *msg wheel = (struct IntuiWheelData *)msg->IAddress; gui_window_set_scroll(gwin->bw->window, - gwin->bw->window->scrollx + (wheel->WheelX * 20), - gwin->bw->window->scrolly + (wheel->WheelY * 20)); + gwin->bw->window->scrollx + (wheel->WheelX * 50), + gwin->bw->window->scrolly + (wheel->WheelY * 50)); } break; -- cgit v1.2.3