From 8399ab4ff95a8c66befc13e87efcaa33158bab1a Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 22 Sep 2015 13:07:15 -0400 Subject: [PATCH] do not emit client iconify signal when reapplying compositor theme this has no effect other than breaking the animation counter for the client and preventing it from being deleted --- src/bin/e_comp_object.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 725e0e397..7b62b4263 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -634,8 +634,9 @@ _e_comp_object_shadow_setup(E_Comp_Object *cw) else e_comp_object_signal_emit(cw->smart_obj, "e,state,hidden", "e"); - if (cw->ec->iconic) - e_comp_object_signal_emit(cw->smart_obj, "e,action,iconify", "e"); + /* breaks animation counter */ + //if (cw->ec->iconic) + //e_comp_object_signal_emit(cw->smart_obj, "e,action,iconify", "e"); if (!cw->zoomap_disabled) e_zoomap_child_set(cw->zoomobj, NULL); if (cw->frame_object)