discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=a16206c6f1c20e30b063c360a6aaf6e8e423c449
commit a16206c6f1c20e30b063c360a6aaf6e8e423c449 Author: Mike Blumenkrantz <[email protected]> Date: Sat Nov 22 12:47:19 2014 -0500 only show comp obj during internal win show if win not already visible fix T1863 --- src/bin/e_win.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/bin/e_win.c b/src/bin/e_win.c index 8bc5954..77c57d0 100644 --- a/src/bin/e_win.c +++ b/src/bin/e_win.c @@ -120,9 +120,12 @@ _e_elm_win_trap_show(void *data, Evas_Object *o) //#endif evas_object_geometry_get(o, &ctx->client->client.x, &ctx->client->client.y, &ctx->client->client.w, &ctx->client->client.h); ecore_evas_show(ee); - evas_object_show(ctx->client->frame); + if (!ctx->visible) + { + ctx->visible = 1; + evas_object_show(ctx->client->frame); + } if (ctx->centered) e_comp_object_util_center(ctx->client->frame); - ctx->visible = 1; return EINA_TRUE; } --
