From d752096cdf41a2cd64824ac0d7bbd56ca31562fc Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Wed, 25 May 2011 20:47:53 -0400 Subject: [PATCH] Fix XShape Commit c3a04bf unintentionally broke XShape handling. By studying the code extremely carefully, I found this inconsistency with the code that was there before. https://bugzilla.gnome.org/show_bug.cgi?id=635268 --- src/ui/frames.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/frames.c b/src/ui/frames.c index 754475990..ccb76243f 100644 --- a/src/ui/frames.c +++ b/src/ui/frames.c @@ -880,7 +880,7 @@ apply_cairo_region_to_window (Display *display, XShapeCombineRectangles (display, xwindow, ShapeBounding, 0, 0, rects, n_rects, - ShapeSet, YXBanded); + op, YXBanded); g_free (rects); }