discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=f11aeaa8d0ff7619c8590b994012dac2cd17f08f

commit f11aeaa8d0ff7619c8590b994012dac2cd17f08f
Author: Mike Blumenkrantz <[email protected]>
Date:   Fri May 26 16:34:13 2017 -0400

    do not perform zone updates on ignored clients during evas callbacks
    
    ignored clients should not have a zone or a desk
---
 src/bin/e_client.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/e_client.c b/src/bin/e_client.c
index 155d56483..9e1a0f1e3 100644
--- a/src/bin/e_client.c
+++ b/src/bin/e_client.c
@@ -1555,7 +1555,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 (ec->stack.prev || ec->stack.next)
      {
@@ -1595,7 +1595,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 (ec->stack.prev || ec->stack.next)
      {

-- 


Reply via email to