only show comp obj during internal win show if win not already visible

fix T1863
This commit is contained in:
Mike Blumenkrantz 2014-11-22 12:47:19 -05:00
parent ce49f2a1f0
commit a16206c6f1
1 changed files with 5 additions and 2 deletions

View File

@ -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;
}