jaehwan pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=2c362ba7c2f8bbad9b4db97284f4e6e27cb2405b
commit 2c362ba7c2f8bbad9b4db97284f4e6e27cb2405b Author: Jaehwan Kim <[email protected]> Date: Fri Sep 18 16:49:14 2015 +0900 focus: remove checking the focus origin in highlight job. In some case, it can take misoperation. @fix --- src/lib/elm_win.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index 9d4fecc..8ca3b0b 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -1002,11 +1002,7 @@ _elm_win_focus_highlight_reconfigure_job(void *data) if ((!target) || (!common_visible) || (sd->focus_highlight.cur.in_theme)) { if (target) - { - Elm_Focus_Direction focus_origin = elm_widget_focus_origin_get(target); - if (focus_origin >= ELM_FOCUS_UP && focus_origin <= ELM_FOCUS_LEFT) - _elm_win_focus_highlight_simple_setup(sd, fobj); - } + _elm_win_focus_highlight_simple_setup(sd, fobj); goto the_end; } --
