summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaehyun Cho <jae_hyun.cho@samsung.com>2015-05-19 21:32:10 +0900
committerChunEon Park <hermet@hermet.pe.kr>2015-05-19 21:32:11 +0900
commit304899eed28addfdb59fc9f4c3b1d030d923726c (patch)
tree3c3c19ab8ffde91757ecd2037fdd25b64f79baa8
parent0722fcbeb1181590972bfec1d303c32e628b6fc1 (diff)
downloadelementary-304899eed28addfdb59fc9f4c3b1d030d923726c.tar.gz
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
-rw-r--r--src/lib/elm_win.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c
index c2437355e..2c8ace3a5 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