From: Shinwoo Kim Date: Wed, 10 Apr 2013 07:52:07 +0000 (+0900) Subject: [access] use given object, if there is no highlight object in _access_highlight_next_... X-Git-Tag: 2.1b_release~23 X-Git-Url: http://review.tizen.org/git/?p=framework%2Fuifw%2Felementary.git;a=commitdiff_plain;h=c145560053e4c02e11535dc340c2c789b12c7454;hp=88cec151808265659fc01e23b828f3c2a1361b66 [access] use given object, if there is no highlight object in _access_highlight_next_get(); Change-Id: Ia7a8da543d152a4f03973111cddb9f2bdfc83609 --- 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;