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:40 +0900
commit8d9310116479bcbed0d30c5b1b35156d7081a0e8 (patch)
treea6dbf10e3fc3f9c134f270b4edc96ababda04198
parent8e73bbf8ca0461915ad85eaadb54133eb9100b05 (diff)
downloadelementary-8d9310116479bcbed0d30c5b1b35156d7081a0e8.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 494db21f0..77e30cc97 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