summaryrefslogtreecommitdiff
path: root/render/html_redraw.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2009-08-14 23:10:53 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2009-08-14 23:10:53 +0000
commitc26611b32b3796d4bbc886e7efd839ad999885c6 (patch)
treed6ba79dc0aa97c326449ee0e7eb57e25abed21c0 /render/html_redraw.c
parent45e05288f0b7f521dfe706ce152072c422cc8ae1 (diff)
downloadnetsurf-c26611b32b3796d4bbc886e7efd839ad999885c6.tar.gz
netsurf-c26611b32b3796d4bbc886e7efd839ad999885c6.tar.bz2
Merge from Paul Blokus' selectscroll branch. Fixes text input scrollbar behaviour.
svn path=/trunk/netsurf/; revision=9306
Diffstat (limited to 'render/html_redraw.c')
-rw-r--r--render/html_redraw.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/render/html_redraw.c b/render/html_redraw.c
index 2f4fdf794..becf99fe4 100644
--- a/render/html_redraw.c
+++ b/render/html_redraw.c
@@ -712,8 +712,7 @@ bool html_redraw_box(struct box *box,
has_y_scroll = box_vscrollbar_present(box);
- if (!box_handle_scrollbars(box,
- x_parent + box->x, y_parent + box->y,
+ if (!box_handle_scrollbars(current_redraw_browser,box,
has_x_scroll, has_y_scroll))
return false;