do not perform zone updates on ignored clients during evas callbacks

ignored clients should not have a zone or a desk
This commit is contained in:
Mike Blumenkrantz 2017-05-26 16:34:13 -04:00
parent ecc5d49b9a
commit 3593fe3856
1 changed files with 2 additions and 2 deletions

View File

@ -1415,7 +1415,7 @@ _e_client_cb_evas_move(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UN
_e_client_event_simple(ec, E_EVENT_CLIENT_MOVE);
_e_client_zone_update(ec);
if (!e_client_util_ignored_get(ec)) _e_client_zone_update(ec);
evas_object_geometry_get(ec->frame, &x, &y, NULL, NULL);
if ((e_config->transient.move) && (ec->transients))
{
@ -1447,7 +1447,7 @@ _e_client_cb_evas_resize(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_
_e_client_event_simple(ec, E_EVENT_CLIENT_RESIZE);
_e_client_zone_update(ec);
if (!e_client_util_ignored_get(ec)) _e_client_zone_update(ec);
evas_object_geometry_get(ec->frame, &x, &y, &w, &h);
if ((e_config->transient.resize) && (ec->transients))
{