devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=728f383f0bf1602ca27b069ffd2fb0cdfbd174cf
commit 728f383f0bf1602ca27b069ffd2fb0cdfbd174cf Author: Chris Michael <[email protected]> Date: Mon Jun 23 16:49:45 2014 -0400 remove call to e_comp_object_frame_geometry_get when handling x/y configure masks. NB: We never used the left/top frame geometry after fetching it Signed-off-by: Chris Michael <[email protected]> --- src/bin/e_comp_x.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index 7231a56..ab29b2e 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -1433,10 +1433,9 @@ _e_comp_x_configure_request(void *data EINA_UNUSED, int type EINA_UNUSED, Ecore if ((ev->value_mask & ECORE_X_WINDOW_CONFIGURE_MASK_X) || (ev->value_mask & ECORE_X_WINDOW_CONFIGURE_MASK_Y)) { - int zx, zy, zw, zh, t, l; + int zx, zy, zw, zh; e_zone_useful_geometry_get(ec->zone, &zx, &zy, &zw, &zh); - e_comp_object_frame_geometry_get(ec->frame, &l, NULL, &t, NULL); if (ev->value_mask & ECORE_X_WINDOW_CONFIGURE_MASK_X) { ec->comp_data->initial_attributes.x = ev->x; --
