Revert "e comp - stop trying to set size again and again to the same"

This reverts commit 6e882d2e4f.

this is identical to cd3490f35c which was
also reverted.
This commit is contained in:
Mike Blumenkrantz 2017-07-24 08:30:25 -04:00
parent 358f154b83
commit 4a766e9e2f
1 changed files with 2 additions and 1 deletions

View File

@ -1212,7 +1212,8 @@ _e_comp_intercept_resize(void *data, Evas_Object *obj, int w, int h)
/* do nothing until client idler loops */
if (!cw->ec->maximized)
{
if ((w != cw->ec->w) || (h != cw->ec->h))
/* NO. DO NOT DO THIS OR YOU WILL BREAK WINDOW RESIZING. */
//if ((w != cw->ec->w) || (h != cw->ec->h))
{
cw->ec->w = w, cw->ec->h = h;
cw->ec->changes.size = 1;