summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ui/frames.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ui/frames.c b/src/ui/frames.c
index 1f4b575e..497e8854 100644
--- a/src/ui/frames.c
+++ b/src/ui/frames.c
@@ -2427,7 +2427,12 @@ meta_frames_get_mask (MetaFrames *frames,
if (frame == NULL)
return;
+ cairo_push_group (cr);
+
meta_frames_paint (frames, frame, cr);
+
+ cairo_pop_group_to_source (cr);
+ cairo_paint (cr);
}
/* XXX -- this is disgusting. Find a better approach here.