[access] do not highlight, if the object already has the highlight

This commit is contained in:
Shinwoo Kim 2013-03-07 20:30:33 +09:00
parent 8a140f3c5b
commit 99ad5779de
1 changed files with 5 additions and 0 deletions

View File

@ -959,8 +959,13 @@ elm_access_say(const char *text)
EAPI void
elm_access_highlight_set(Evas_Object* obj)
{
Evas_Object *ho;
if (!obj) return;
ho = _access_highlight_object_get(obj);
if (ho == obj) return;
_access_obj_over_timeout_cb(obj);
}