From 818fcb01f4e4d93d28da459e09e4cf8d9466ac55 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 22 Jul 2015 13:30:02 -0400 Subject: [PATCH] fix compositing error when client is ec->hidden during show animation this prevented clients from being deleted and resulted in artifacts and memory leaks --- 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 6516e1f..e0028f0 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -2107,7 +2107,7 @@ _e_comp_smart_show(Evas_Object *obj) } if (cw->ec->iconic && (!cw->ec->new_client)) e_comp_object_signal_emit(cw->smart_obj, "e,action,uniconify", "e"); - else + else if (!cw->showing) /* if set, client was ec->hidden during show animation */ { e_comp_object_signal_emit(cw->smart_obj, "e,state,visible", "e"); _e_comp_object_animating_begin(cw); -- 2.7.4