summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2009-05-31 15:19:46 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2009-05-31 15:19:46 +0000
commita49b8cdcf08a958c751f8f83b0027d71986f71c8 (patch)
tree543cbd0e6be849445f6457edd86faf5cad7d9746 /amiga
parent0ccf0e0d973d0d50263d315bebfca1d0eb8e96e2 (diff)
downloadnetsurf-a49b8cdcf08a958c751f8f83b0027d71986f71c8.tar.gz
netsurf-a49b8cdcf08a958c751f8f83b0027d71986f71c8.tar.bz2
set_scroll should only activate faster_scroll if it is set in the options
svn path=/trunk/netsurf/; revision=7669
Diffstat (limited to 'amiga')
-rwxr-xr-xamiga/gui.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 2c60bc5c5..65bb4eab6 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -2432,7 +2432,9 @@ void gui_window_set_scroll(struct gui_window *g, int sx, int sy)
TAG_DONE);
g->shared->redraw_required = true;
- g->shared->redraw_scroll = true;
+
+ if(option_faster_scroll)
+ g->shared->redraw_scroll = true;
g->scrollx = sx;
g->scrolly = sy;