summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2014-10-25 15:38:57 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2014-10-25 15:38:57 +0100
commite22273c0ff11e7d457b6cd5c4ba1edd2031fc6d9 (patch)
tree594942c31702c73c6edd0406e07a776520a3229d /amiga
parent8590780ff5bbdb76a5f77e22f6242491262fc2b0 (diff)
downloadnetsurf-e22273c0ff11e7d457b6cd5c4ba1edd2031fc6d9.tar.gz
netsurf-e22273c0ff11e7d457b6cd5c4ba1edd2031fc6d9.tar.bz2
Remove scrollbar for framesets too
Diffstat (limited to 'amiga')
-rw-r--r--amiga/gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 100c1cd3f..050890a7c 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -2577,7 +2577,7 @@ static void ami_gui_vscroll_update(struct gui_window_2 *gwin)
/* We only bother with vscroll, as the hscroller is embedded in the
bottom window border with the status bar, so toggling it is pointless */
- if(vscroll == BW_SCROLLING_NO) {
+ if((vscroll == BW_SCROLLING_NO) || browser_window_is_frameset(gwin->bw) == true) {
ami_gui_vscroll_remove(gwin);
} else {
ami_gui_vscroll_add(gwin);