From 66a69bc889332cdbac2eac5226c967cd5dc8cc25 Mon Sep 17 00:00:00 2001 From: Rob Kendrick Date: Fri, 2 Feb 2007 11:45:54 +0000 Subject: Fix off-by-one in nsgtk image plotter that resulted in all images being subject to a bilinear resample. svn path=/trunk/netsurf/; revision=3162 --- gtk/gtk_plotters.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gtk/gtk_plotters.c') diff --git a/gtk/gtk_plotters.c b/gtk/gtk_plotters.c index b78bcd5e6..97681b451 100644 --- a/gtk/gtk_plotters.c +++ b/gtk/gtk_plotters.c @@ -277,7 +277,7 @@ static bool nsgtk_plot_pixbuf(int x, int y, int width, int height, width++; /* TODO: investigate why this is required */ - if (gdk_pixbuf_get_width(pixbuf) == width && + if (gdk_pixbuf_get_width(pixbuf) == (width - 1) && gdk_pixbuf_get_height(pixbuf) == height) { gdk_draw_pixbuf(current_drawable, current_gc, pixbuf, -- cgit v1.2.3