From: Mike Blumenkrantz Date: Tue, 7 May 2013 07:49:21 +0000 (+0100) Subject: don't use pixmap size for comp geom updates if border is shading X-Git-Tag: submit/efl/20131021.015651~705 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=26b7ff074a1b8c48a35b5df67330071b11437467;p=platform%2Fupstream%2Fenlightenment.git don't use pixmap size for comp geom updates if border is shading --- diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c index 4333117..b1f1d79 100644 --- a/src/bin/e_comp.c +++ b/src/bin/e_comp.c @@ -496,7 +496,7 @@ _e_comp_win_geometry_update(E_Comp_Win *cw) w = cw->w, h = cw->h; else if (cw->bd) { - if ((!cw->bd->shaded) && cw->pw && cw->ph) + if (((!cw->bd->shaded) && (!cw->bd->shading)) && cw->pw && cw->ph) w = cw->pw + cw->bd->client_inset.l + cw->bd->client_inset.r, h = cw->ph + cw->bd->client_inset.t + cw->bd->client_inset.b; else w = cw->bd->w, h = cw->bd->h;