ecore_evas: window does not go back to normal state if you set iconified to EINA_FALSE.

Reviewers: cedric, raster, Hermet

Differential Revision: https://phab.enlightenment.org/D245

Signed-off-by: Cedric Bail <cedric.bail@samsung.com>
This commit is contained in:
Michal Jagiello 2013-10-14 11:59:18 +09:00 committed by Cedric Bail
parent dd2f6b1370
commit 9bfb730ff5
1 changed files with 4 additions and 1 deletions

View File

@ -2738,7 +2738,10 @@ _ecore_evas_x_iconified_set(Ecore_Evas *ee, int on)
if (on)
ecore_x_icccm_iconic_request_send(ee->prop.window, edata->win_root);
else
ecore_evas_show(ee);
{
ecore_evas_activate(ee);
ecore_evas_show(ee);
}
}
static void