don't set E_Client->changes.visible on successful show/hide

iirc this was a fix for something else that was going on early in
e19 development, now it creates issues when attempting to hide clients
This commit is contained in:
Mike Blumenkrantz 2015-08-19 14:00:52 -04:00
parent b36f79aa55
commit fb79fff70d
1 changed files with 0 additions and 7 deletions

View File

@ -1397,8 +1397,6 @@ _e_client_cb_evas_hide(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UN
if (!ec->hidden)
{
ec->changes.visible = 1;
EC_CHANGED(ec);
if (ec->focused)
_e_client_revert_focus(ec);
}
@ -1502,11 +1500,6 @@ _e_client_cb_evas_show(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UN
{
E_Client *ec = data;
if (!ec->hidden)
{
ec->changes.visible = 1;
EC_CHANGED(ec);
}
if (!ec->iconic)
_e_client_event_simple(data, E_EVENT_CLIENT_SHOW);
}