discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=9d3f47f4f63a74782cb31f7f88dd00c0bb28f8f5
commit 9d3f47f4f63a74782cb31f7f88dd00c0bb28f8f5 Author: Mike Blumenkrantz <[email protected]> Date: Wed Jan 29 21:01:57 2014 -0500 ignore deleted clients on comp object add event --- 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 1e3397c..2e3f56d 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -1091,7 +1091,7 @@ _e_comp_x_object_add(void *d EINA_UNUSED, int t EINA_UNUSED, E_Event_Comp_Object E_Client *ec; ec = e_comp_object_client_get(ev->comp_object); - if (!ec) return ECORE_CALLBACK_RENEW; + if ((!ec) || e_object_is_del(E_OBJECT(ec))) return ECORE_CALLBACK_RENEW; _e_comp_x_client_evas_init(ec); _e_comp_x_client_stack(ec); return ECORE_CALLBACK_RENEW; --
