From 306e09dd9f0546db3d13db082bebbe461ee2058d Mon Sep 17 00:00:00 2001 From: Rob Kendrick Date: Sun, 5 Nov 2006 13:16:21 +0000 Subject: Fudge off-by-one bitmap plotting in nsgtk plotters. Will investigate actual cause later. svn path=/trunk/netsurf/; revision=3032 --- gtk/gtk_plotters.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk/gtk_plotters.c b/gtk/gtk_plotters.c index 6a1a3a977..b04c394d2 100644 --- a/gtk/gtk_plotters.c +++ b/gtk/gtk_plotters.c @@ -268,6 +268,8 @@ static bool nsgtk_plot_pixbuf(int x, int y, int width, int height, if (width == 0 || height == 0) return true; + width++; /* TODO: investigate why this is required */ + if (gdk_pixbuf_get_width(pixbuf) == width && gdk_pixbuf_get_height(pixbuf) == height) { gdk_draw_pixbuf(current_drawable, current_gc, -- cgit v1.2.3