From de58ff7ecd5ced58fb9d8613f4e0141d0d73ee6c Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 27 Jan 2014 09:23:40 -0500 Subject: [PATCH] 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 c09374ef4..5b7648555 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));