hermet pushed a commit to branch elementary-1.14.

http://git.enlightenment.org/core/elementary.git/commit/?id=8d9310116479bcbed0d30c5b1b35156d7081a0e8

commit 8d9310116479bcbed0d30c5b1b35156d7081a0e8
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 494db21..77e30cc 100644
--- a/src/lib/elm_win.c
+++ b/src/lib/elm_win.c
@@ -3488,7 +3488,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;
+   sd->withdrawn = ecore_evas_withdrawn_get(sd->ee);
 
    if (sd->parent)
      evas_object_event_callback_add

-- 


Reply via email to