summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2009-08-31 10:16:23 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2009-08-31 10:16:23 +0000
commit984973015a6b3a87e0032e33425e929aa9873209 (patch)
treed464fa7ab90d700ba0f6c0012d1e520544e2700d /amiga
parent44ffe7b85d407ada3b1ecfb512698ca1750ace29 (diff)
downloadnetsurf-984973015a6b3a87e0032e33425e929aa9873209.tar.gz
netsurf-984973015a6b3a87e0032e33425e929aa9873209.tar.bz2
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
Diffstat (limited to 'amiga')
-rwxr-xr-xamiga/gui.c4
1 files changed, 2 insertions, 2 deletions
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;