From 9b2372a798acb09139682d9acdecdb5f2477cb57 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 27 Jan 2014 10:53:49 -0500 Subject: [PATCH] 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 e5ba4e4eb..62693a313 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)