I "accidently" fixed this bug in elm_access.

_elm_access_highlight_cycle sets access read_mode as EINA_TRUE
and then never set it back as EINA_FASLE,
which causes elm_widget_focus_steal not to be called when restoring focus tree.

...sorry for a lame explanation (somebody help me out!)

signed-off-by: Jaeun Choi jaeun_choi@naver.com


SVN revision: 83883
This commit is contained in:
Shinwoo Kim 2013-02-14 08:41:18 +00:00
parent afa738e3e6
commit 72991f6dfe
1 changed files with 1 additions and 0 deletions

View File

@ -444,6 +444,7 @@ _elm_access_highlight_cycle(Evas_Object *obj, Elm_Focus_Direction dir)
{
_elm_access_read_mode_set(EINA_TRUE);
elm_widget_focus_cycle(obj, dir);
_elm_access_read_mode_set(EINA_FALSE);
}
EAPI char *