E_Comp_Object *cw = data;
#ifdef _F_E_COMP_OBJECT_INTERCEPT_HOOK_
- if( !_e_comp_object_intercept_hook_call(E_COMP_OBJECT_INTERCEPT_HOOK_HIDE, cw->ec)) return;
+ if( !_e_comp_object_intercept_hook_call(E_COMP_OBJECT_INTERCEPT_HOOK_HIDE, cw->ec))
+ {
+ ELOGF("COMP", "Hide. intercepted", cw->ec);
+ return;
+ }
#endif
if (cw->ec->launching == EINA_TRUE)
return;
}
/* already hidden or currently animating */
- if ((!cw->visible) || (cw->animating && cw->hiding && (!cw->ec->iconic))) return;
+ if ((!cw->visible) || (cw->animating && cw->hiding && (!cw->ec->iconic)))
+ {
+ ELOGF("COMP", "Hide. but already hidden or currently animating", cw->ec);
+ return;
+ }
/* don't try hiding during shutdown */
cw->defer_hide |= stopping;
cw->ec->delete_requested = 0;
if ((!cw->animating) || (!cw->hiding) || cw->ec->iconic)
{
+ ELOGF("COMP", "Hide. but after iconify or hide animation", cw->ec);
+
if (cw->ec->iconic)
e_comp_object_signal_emit(obj, "e,action,iconify", "e");
else