ignore fake client resizes during shade

fix T1314
This commit is contained in:
Mike Blumenkrantz 2014-06-02 16:25:47 -04:00
parent d412ed9da6
commit 1a492e3786
1 changed files with 1 additions and 0 deletions

View File

@ -807,6 +807,7 @@ _e_comp_intercept_resize(void *data, Evas_Object *obj, int w, int h)
if ((cw->w == w) && (cw->h == h))
{
if (cw->ec->shading || cw->ec->shaded) return;
if (((cw->ec->w != w) || (cw->ec->h != h)) ||
(cw->ec->client.w != w - cw->client_inset.l - cw->client_inset.r) ||
(cw->ec->client.h != h - cw->client_inset.t - cw->client_inset.b))