fix compositing error when client is ec->hidden during show animation

this prevented clients from being deleted and resulted in artifacts and
memory leaks
This commit is contained in:
Mike Blumenkrantz 2015-07-22 13:30:02 -04:00
parent a3d5762bf2
commit 818fcb01f4
1 changed files with 1 additions and 1 deletions

View File

@ -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);