raster pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=422182a2d9d3995448bbb14a85716946573b3fce
commit 422182a2d9d3995448bbb14a85716946573b3fce Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Wed Oct 29 19:34:54 2014 +0900 elm win - start wins in withdrawn state this matches 5954289c6ce1cd55ff212428291604b981438439 commit on efl - fixes initial window state so you can detetc when it is shown and normal. @fix --- src/lib/elm_win.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index 8945f54..abbf5da 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -3372,6 +3372,7 @@ _elm_win_constructor(Eo *obj, Elm_Win_Data *sd, const char *name, Elm_Win_Type t sd->type = type; sd->parent = parent; sd->modal_count = 0; + sd->withdrawn = EINA_TRUE; if (sd->parent) evas_object_event_callback_add --
