ryuan pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=d03af718eff3b645b2d7b794b4a5dafc42af85db
commit d03af718eff3b645b2d7b794b4a5dafc42af85db Author: Ryuan Choi <[email protected]> Date: Wed May 7 12:51:51 2014 +0900 ctxpopup: Fixes that remains diskselector when dismissed ctxpopup of elm_datetime. elm_object_content_unset should return child element which is unset. Tests: elementary_test -to datetime --- src/lib/elc_ctxpopup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elc_ctxpopup.c b/src/lib/elc_ctxpopup.c index b118bc1..01dbf2f 100644 --- a/src/lib/elc_ctxpopup.c +++ b/src/lib/elc_ctxpopup.c @@ -828,7 +828,7 @@ _elm_ctxpopup_elm_container_content_unset(Eo *obj, Elm_Ctxpopup_Data *sd, const if (sd->visible) elm_layout_sizing_eval(obj); - return NULL; + return content; } static void --
