ensure withdrawn state is always set

this is what was breaking shows on things like yakuake
This commit is contained in:
Mike Blumenkrantz 2014-01-19 02:39:44 -05:00
parent 32d4c2f2b9
commit 8ce457889e
2 changed files with 2 additions and 3 deletions

View File

@ -1271,9 +1271,6 @@ _e_client_cb_evas_hide(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UN
if (action_client == ec) _e_client_action_finish();
e_pointer_type_pop(ec->comp->pointer, ec, NULL);
if ((!ec->iconic) && (!ec->override))
e_hints_window_hidden_set(ec);
if (!ec->hidden)
{
ec->visible = 0;

View File

@ -1156,6 +1156,8 @@ _e_comp_intercept_hide(void *data, Evas_Object *obj)
if (!cw->defer_hide)
{
if ((!cw->ec->iconic) && (!cw->ec->override) && (!cw->ec->delete_requested))
e_hints_window_hidden_set(cw->ec);
cw->defer_hide = 1;
if ((!cw->animating) || (cw->ec->iconic))
{