raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=690319b2f3238b0d9889ecefc4dbd46f70d66d4c
commit 690319b2f3238b0d9889ecefc4dbd46f70d66d4c Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Thu Oct 6 10:58:04 2016 +0900 ecore-evas - x fix intial iconified state so terminology -I works this fixes intitial iconic state for x11 as demonstrated by terminology -I but enlightenment is broken though... xterm -iconic also shows the same break with a black window. @fix --- src/modules/ecore_evas/engines/x/ecore_evas_x.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/modules/ecore_evas/engines/x/ecore_evas_x.c b/src/modules/ecore_evas/engines/x/ecore_evas_x.c index 5356571..39de9c3 100644 --- a/src/modules/ecore_evas/engines/x/ecore_evas_x.c +++ b/src/modules/ecore_evas/engines/x/ecore_evas_x.c @@ -3363,8 +3363,7 @@ _ecore_evas_x_iconified_set(Ecore_Evas *ee, Eina_Bool on) Ecore_Evas_Engine_Data_X11 *edata = ee->engine.data; if (ee->prop.iconified == on) return; - if (((ee->should_be_visible) && (!ee->visible)) || (ee->visible)) - ee->prop.iconified = on; + ee->prop.iconified = on; _ecore_evas_x_hints_update(ee); if (on) ecore_x_icccm_iconic_request_send(ee->prop.window, edata->win_root); --