From: Shinwoo Kim Date: Wed, 10 Apr 2013 08:16:00 +0000 (+0900) Subject: [access] turn off highlight display when screen reader is disabled X-Git-Tag: accepted/tizen/20130607.213307~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ebc7f57213e3b76c72063116a04093ecb9a7ec7f;p=profile%2Fmobile%2Felementary.git [access] turn off highlight display when screen reader is disabled Change-Id: I5b5c88fadfbfc0d0a903806f395ad8ad6c560835 --- diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index fae0882..2410491 100755 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -1947,11 +1947,19 @@ _elm_win_rescale(Elm_Theme *th, void _elm_win_access(Eina_Bool is_access) { + Evas *evas; const Eina_List *l; Evas_Object *obj; EINA_LIST_FOREACH(_elm_win_list, l, obj) - elm_widget_access(obj, is_access); + { + elm_widget_access(obj, is_access); + if (!is_access) + { + evas = evas_object_evas_get(obj); + if (evas) _elm_access_object_hilight_disable(evas); + } + } } void