discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=f4de16df08e6f2fa11637ffcc2a6d86b4b3ee0ca
commit f4de16df08e6f2fa11637ffcc2a6d86b4b3ee0ca Author: Mike Blumenkrantz <[email protected]> Date: Mon Feb 3 13:57:45 2014 -0500 don't change zone after moving client this happens automatically, and with more accuracy, later on --- src/bin/e_comp_x.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index 614e94a..6f4237c 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -1499,7 +1499,6 @@ _e_comp_x_configure_request(void *data EINA_UNUSED, int type EINA_UNUSED, Ecore else { evas_object_move(ec->frame, x, y); - e_client_zone_set(ec, e_comp_zone_xy_get(ec->comp, x, y)); } } } @@ -3233,7 +3232,6 @@ _e_comp_x_hook_client_fetch(void *d EINA_UNUSED, E_Client *ec) ec->x = ((ec->zone->x + ec->zone->w) / 2) - (ec->w / 2); if (abs((ec->comp->man->h / 2) - ec->y - (ec->h / 2)) < 3) ec->y = ((ec->zone->y + ec->zone->h) / 2) - (ec->h / 2); - e_client_zone_set(ec, e_comp_zone_xy_get(ec->comp, ec->x, ec->y)); } ec->changes.pos = 1; ec->placed = 1; --
