discomfitor pushed a commit to branch master.

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

commit 0d85c2c5a17d2ac7cbd3b7e3006d16a9c4843f68
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Fri Jul 21 16:20:04 2017 -0400

    rework internal win centering
    
    call resize before attempting to center to ensure accurate positioning
---
 src/bin/e_win.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/bin/e_win.c b/src/bin/e_win.c
index 5ae728353..de8093e6c 100644
--- a/src/bin/e_win.c
+++ b/src/bin/e_win.c
@@ -166,13 +166,13 @@ _e_elm_win_trap_show(void *data, Evas_Object *o)
    ctx->client->borderless |= borderless;
    e_comp_object_frame_xy_adjust(ctx->client->frame, ctx->client->client.x, 
ctx->client->client.y, &ctx->client->x, &ctx->client->y);
    e_comp_object_frame_wh_adjust(ctx->client->frame, ctx->client->client.w, 
ctx->client->client.h, &ctx->client->w, &ctx->client->h);
+   if (ctx->sized) evas_object_resize(o, ctx->w, ctx->h);
+   if (ctx->placed) evas_object_move(o, ctx->x, ctx->y);
    if (ctx->centered)
      {
-        e_comp_object_util_center(ctx->client->frame);
-        ctx->centered =0;
+        e_comp_object_util_center(o);
+        ctx->centered = 0;
      }
-   else if (ctx->placed) evas_object_move(o, ctx->x, ctx->y);
-   if (ctx->sized) evas_object_resize(o, ctx->w, ctx->h);
    return EINA_TRUE;
 }
 

-- 


Reply via email to