From aadb190b77b0bd7d55f0e8939aaea10932c5328c Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 18 Dec 2009 19:17:04 -0500 Subject: [PATCH] Fix a thinko in computing damage for segments The code was not taking the endpoint of the first segment into account. This was reported in bug 604747. --- gdk/gdkoffscreenwindow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdk/gdkoffscreenwindow.c b/gdk/gdkoffscreenwindow.c index dcba0a16e4..23d92affd2 100644 --- a/gdk/gdkoffscreenwindow.c +++ b/gdk/gdkoffscreenwindow.c @@ -514,7 +514,7 @@ gdk_offscreen_window_draw_segments (GdkDrawable *drawable, min_x = max_x = segs[0].x1; min_y = max_y = segs[0].y1; - for (i = 1; i < nsegs; i++) + for (i = 0; i < nsegs; i++) { min_x = MIN (min_x, segs[i].x1); max_x = MAX (max_x, segs[i].x1);