From c145560053e4c02e11535dc340c2c789b12c7454 Mon Sep 17 00:00:00 2001 From: Shinwoo Kim Date: Wed, 10 Apr 2013 16:52:07 +0900 Subject: [PATCH] [access] use given object, if there is no highlight object in _access_highlight_next_get(); Change-Id: Ia7a8da543d152a4f03973111cddb9f2bdfc83609 --- src/lib/elm_access.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elm_access.c b/src/lib/elm_access.c index 1e0f5c5..3b6430e 100644 --- a/src/lib/elm_access.c +++ b/src/lib/elm_access.c @@ -537,7 +537,7 @@ _access_highlight_next_get(Evas_Object *obj, Elm_Focus_Direction dir) if (!elm_widget_is(obj)) return ret; ho = _access_highlight_object_get(obj); - if (!ho) return ret; + if (!ho) ho = obj; parent = ho; -- 2.7.4