hermet pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=304899eed28addfdb59fc9f4c3b1d030d923726c

commit 304899eed28addfdb59fc9f4c3b1d030d923726c
Author: Jaehyun Cho <jae_hyun....@samsung.com>
Date:   Tue May 19 21:32:10 2015 +0900

    elm_win: Set initial withdrawn state from win's ecore_evas property.
    
    Summary:
    For instance, ecore_evas sets initial withdrawn state EINA_FALSE if 
elm_engine is "buffer".
    Therefore, the initial withdrawn state is derived from ecore_evas property.
    @fix
    
    Reviewers: raster, Hermet
    
    Reviewed By: Hermet
    
    Differential Revision: https://phab.enlightenment.org/D2435
---
 src/lib/elm_win.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c
index c243735..2c8ace3 100644
--- a/src/lib/elm_win.c
+++ b/src/lib/elm_win.c
@@ -3589,7 +3589,7 @@ _elm_win_finalize_internal(Eo *obj, Elm_Win_Data *sd, 
const char *name, Elm_Win_
    sd->type = type;
    sd->parent = parent;
    sd->modal_count = 0;
-   sd->withdrawn = EINA_TRUE;
+   sd->withdrawn = ecore_evas_withdrawn_get(sd->ee);
 
    if (sd->parent)
      evas_object_event_callback_add

-- 


Reply via email to