summaryrefslogtreecommitdiff
path: root/frontends
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2019-08-02 12:58:50 +0100
committerVincent Sanders <vince@kyllikki.org>2019-08-02 12:58:50 +0100
commit3114e78ded112f2c75b52b77734cb7b238705278 (patch)
treec2cd477ab2fc587a4b3845ab7383421f4b2156e2 /frontends
parent552aab42e16689c24ac566913b02c7613bfc090b (diff)
downloadnetsurf-3114e78ded112f2c75b52b77734cb7b238705278.tar.gz
netsurf-3114e78ded112f2c75b52b77734cb7b238705278.tar.bz2
fix missed get dimensions call in amiga frontend
Diffstat (limited to 'frontends')
-rw-r--r--frontends/amiga/gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/amiga/gui.c b/frontends/amiga/gui.c
index 0b4ae7a7b..e90f0d3c7 100644
--- a/frontends/amiga/gui.c
+++ b/frontends/amiga/gui.c
@@ -2212,7 +2212,7 @@ static void ami_gui_scroller_update(struct gui_window_2 *gwin)
rethinkh = ami_gui_hscroll_remove(gwin);
} else {
if((browser_window_get_extents(gwin->gw->bw, false, &w, &h) == NSERROR_OK)) {
- gui_window_get_dimensions(gwin->gw, &ww, &wh, false);
+ gui_window_get_dimensions(gwin->gw, &ww, &wh);
}
if(vscroll == BW_SCROLLING_NO) {