don't show comp win animation during a forced hide

fixes unwanted fade in when desk flip animations are disabled
This commit is contained in:
discomfitor 2013-09-19 22:16:18 +01:00
parent 373c32a83f
commit bb1f5f9fdb
1 changed files with 3 additions and 2 deletions

View File

@ -2736,9 +2736,10 @@ _e_comp_win_hide(E_Comp_Win *cw)
return;
}
cw->defer_hide = 0;
cw->force = 0;
_e_comp_child_hide(cw);
edje_object_signal_emit(cw->shobj, "e,state,visible,off", "e");
if (!cw->force)
edje_object_signal_emit(cw->shobj, "e,state,visible,off", "e");
cw->force = 0;
if (cw->update_timeout)
{