summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2017-06-10 11:53:58 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2017-06-10 11:53:58 +0100
commitb0358727d90383d9fee6ccff87f3f2274d9d4225 (patch)
tree65ce7eec477fa19838bada33eb460f22b4a19132
parent56daba58789acddaeb2c6ecf3801eb27a8dc9ccf (diff)
downloadnetsurf-b0358727d90383d9fee6ccff87f3f2274d9d4225.tar.gz
netsurf-b0358727d90383d9fee6ccff87f3f2274d9d4225.tar.bz2
GTK: Don't need to treat local history specially now.
-rw-r--r--frontends/gtk/local_history.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/gtk/local_history.c b/frontends/gtk/local_history.c
index 650cb4fb6..b36ccd23a 100644
--- a/frontends/gtk/local_history.c
+++ b/frontends/gtk/local_history.c
@@ -116,7 +116,7 @@ nsgtk_local_history_draw(struct nsgtk_corewindow *nsgtk_cw, struct rect *r)
lhw = (struct nsgtk_local_history_window *)nsgtk_cw;
ctx.plot->clip(&ctx, r);
- local_history_redraw(lhw->session, r->x0, r->y0, r, &ctx);
+ local_history_redraw(lhw->session, 0, 0, r, &ctx);
return NSERROR_OK;
}