From 5cc573f361f209d1159e1dbca3a52bf1a075793b Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Mon, 7 Apr 2014 04:13:01 +0900 Subject: [PATCH] list: Fixed _elm_list_item_content_focus_set in case the first content is focused. The function should return true when the first content of an item is focused. @fix --- legacy/elementary/src/lib/elm_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/elementary/src/lib/elm_list.c b/legacy/elementary/src/lib/elm_list.c index e2709bc..969da13 100644 --- a/legacy/elementary/src/lib/elm_list.c +++ b/legacy/elementary/src/lib/elm_list.c @@ -242,7 +242,7 @@ _elm_list_item_content_focus_set(Elm_List_Item *it, Elm_Focus_Direction dir, if (!focused) { elm_object_focus_set(focus_chain[0], EINA_TRUE); - return EINA_FALSE; + return EINA_TRUE; } if (dir != ELM_FOCUS_PREVIOUS) -- 2.7.4