discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=41f4f28114d6c392fcaeff063da6b1710eaf2299
commit 41f4f28114d6c392fcaeff063da6b1710eaf2299 Author: Mike Blumenkrantz <[email protected]> Date: Mon Dec 29 20:42:27 2014 -0500 comp pending resizes should not require both w+h to change --- src/bin/e_comp_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 4c1d44d..93aa905 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -878,7 +878,7 @@ _e_comp_intercept_resize(void *data, Evas_Object *obj, int w, int h) return; } if ((!cw->ec->internal) && e_client_util_resizing_get(cw->ec) && cw->ec->netwm.sync.request && - ((cw->ec->w != w) && (cw->ec->h != h))) + ((cw->ec->w != w) || (cw->ec->h != h))) { /* this is ugly. */ //INF("PENDING %dx%d", iw, ih); --
