summaryrefslogtreecommitdiff
path: root/frontends/gtk/scaffolding.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-02-06 00:37:08 +0000
committerVincent Sanders <vince@kyllikki.org>2017-02-11 13:57:07 +0000
commit78d601eb76c796c038f42c2b9f10e4e591272271 (patch)
tree17aad8a88df9fd22533a4d11ebad7929b61ef56c /frontends/gtk/scaffolding.c
parent7d660561cc9562731429ca06904b5e5711e90e27 (diff)
downloadnetsurf-78d601eb76c796c038f42c2b9f10e4e591272271.tar.gz
netsurf-78d601eb76c796c038f42c2b9f10e4e591272271.tar.bz2
Update GTK plotters to use new API
Diffstat (limited to 'frontends/gtk/scaffolding.c')
-rw-r--r--frontends/gtk/scaffolding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/gtk/scaffolding.c b/frontends/gtk/scaffolding.c
index bbc568e15..06b51decc 100644
--- a/frontends/gtk/scaffolding.c
+++ b/frontends/gtk/scaffolding.c
@@ -1706,7 +1706,7 @@ nsgtk_history_draw_event(GtkWidget *widget, GdkEventExpose *event, gpointer g)
clip.y0 = event->area.y;
clip.x1 = event->area.x + event->area.width;
clip.y1 = event->area.y + event->area.height;
- ctx.plot->clip(&clip);
+ ctx.plot->clip(&ctx, &clip);
browser_window_history_redraw(bw, &ctx);