seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=4cae5eb61fadb1e2a89de82af6872f307fd96424
commit 4cae5eb61fadb1e2a89de82af6872f307fd96424 Author: Daniel Juyung Seo <seojuyu...@gmail.com> Date: Sun Dec 8 04:55:42 2013 +0900 layout: reset disabled status after refreshing the widget theme. This fixes many potential bugs which will loose disabled status after theme hook. Thanks a lot kuuko for the report. This fixes T608. --- src/lib/elm_layout.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/elm_layout.c b/src/lib/elm_layout.c index 9337e1b..07925a6 100644 --- a/src/lib/elm_layout.c +++ b/src/lib/elm_layout.c @@ -372,6 +372,8 @@ _elm_layout_smart_theme(Eo *obj, void *_pd, va_list *list) _visuals_refresh(obj, sd); + eo_do(obj, elm_wdg_disable(&int_ret)); + if (ret) *ret = int_ret; } --