From: Kristian Høgsberg Date: Tue, 24 Jul 2012 01:32:46 +0000 (-0400) Subject: dnd: Clip flowers to window content area X-Git-Tag: 0.95.0~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0fd49aa8862a3c634ee6a14da139b4e5d620c605;p=profile%2Fivi%2Fweston.git dnd: Clip flowers to window content area https://bugs.freedesktop.org/show_bug.cgi?id=52420 --- diff --git a/clients/dnd.c b/clients/dnd.c index c38b94f..6f55e95 100644 --- a/clients/dnd.c +++ b/clients/dnd.c @@ -186,6 +186,9 @@ dnd_redraw_handler(struct widget *widget, void *data) cairo_set_source_rgba(cr, 0, 0, 0, 0.8); cairo_fill(cr); + cairo_rectangle(cr, allocation.x, allocation.y, + allocation.width, allocation.height); + cairo_clip(cr); cairo_set_operator(cr, CAIRO_OPERATOR_OVER); for (i = 0; i < ARRAY_LENGTH(dnd->items); i++) { if (!dnd->items[i])