seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=dc8f3626bed0f358efe2e7613d6ca4f009bfd39e
commit dc8f3626bed0f358efe2e7613d6ca4f009bfd39e Author: Daniel Juyung Seo <seojuyu...@gmail.com> Date: Sun Dec 15 03:47:43 2013 +0900 ctxpopup: disable content correctly on smart disable. This is a fix of commit 1932e6713104bfe752097dab8b6902ed86b58493 --- 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 7e53a02..c400e60 100644 --- a/src/lib/elc_ctxpopup.c +++ b/src/lib/elc_ctxpopup.c @@ -1112,7 +1112,7 @@ _elm_ctxpopup_smart_disable(Eo *obj, void *_pd, va_list *list) if (sd->list) elm_object_disabled_set(sd->list, elm_widget_disabled_get(obj)); else if (sd->content) - elm_object_disabled_set(sd->list, elm_widget_disabled_get(obj)); + elm_object_disabled_set(sd->content, elm_widget_disabled_get(obj)); if (ret) *ret = EINA_TRUE; } --