discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=de58ff7ecd5ced58fb9d8613f4e0141d0d73ee6c
commit de58ff7ecd5ced58fb9d8613f4e0141d0d73ee6c Author: Mike Blumenkrantz <zm...@samsung.com> Date: Mon Jan 27 09:23:40 2014 -0500 only hide/delete comp util objs if hiding flag is set if an object is shown during the hide animation, this flag gets unset --- 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 c09374e..5b76485 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -2071,7 +2071,7 @@ _e_comp_object_util_done_defer(void *data, Evas_Object *obj, const char *emissio { if (!e_util_strcmp(emission, "e,action,hide,done")) { - evas_object_data_del(obj, "comp_hiding"); + if (!evas_object_data_del(obj, "comp_hiding")) return; evas_object_intercept_hide_callback_del(obj, _e_comp_object_util_hide); evas_object_hide(obj); e_comp_shape_queue(e_comp_util_evas_object_comp_get(obj)); --