always show ecore-x windows for new clients after reparent

This commit is contained in:
Mike Blumenkrantz 2013-06-24 10:07:12 +01:00
parent 26f61cb50a
commit 30b83c7820
1 changed files with 4 additions and 0 deletions

View File

@ -8051,7 +8051,11 @@ _e_border_eval0(E_Border *bd)
if ((bd->new_client) && (bd->internal) &&
(bd->internal_ecore_evas))
ecore_evas_show(bd->internal_ecore_evas);
}
if (bd->new_client)
{
ecore_x_window_show(bd->client.win);
_e_border_show(bd);
}
bd->need_reparent = 0;
}