discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=9b2372a798acb09139682d9acdecdb5f2477cb57
commit 9b2372a798acb09139682d9acdecdb5f2477cb57 Author: Mike Blumenkrantz <zm...@samsung.com> Date: Mon Jan 27 10:53:49 2014 -0500 ignore X configure events where override is not set this handler is only for dealing with overrides, so if this flag isn't set we're not interested --- src/bin/e_comp_x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index e5ba4e4..62693a3 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -1322,7 +1322,7 @@ _e_comp_x_configure(void *data EINA_UNUSED, int type EINA_UNUSED, Ecore_X_Event_ return ECORE_CALLBACK_RENEW; } ec = _e_comp_x_client_find_by_window(ev->win); - if ((!ec) || (!ec->override)) return ECORE_CALLBACK_PASS_ON; + if ((!ec) || (!ec->override) || (!ev->override)) return ECORE_CALLBACK_PASS_ON; //INF("configure %p: %d,%d %dx%d", ec, ev->x, ev->y, ev->w, ev->h); if (ev->abovewin == 0) --