summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <marcel@osg.samsung.com>2017-11-30 19:28:18 +0100
committerMarcel Hollerbach <marcel@osg.samsung.com>2017-11-30 20:07:52 +0100
commit38b3ef1b8c660f8089b95f9939992b8aac1a75f0 (patch)
tree8fb6d51aaf45ec3afeb0235aba72a89122a24caa
parent1d7833a4b2992e51813c24c6c8714cf4524940ea (diff)
downloadefl-38b3ef1b8c660f8089b95f9939992b8aac1a75f0.tar.gz
elm_genlist: use the correct elm_object_focus_get function
genlist does not get focus anymore, only its children are getting them. fix T6425
-rw-r--r--src/lib/elementary/elm_genlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/elm_genlist.c b/src/lib/elementary/elm_genlist.c
index 9ae57c1ef5..8a59d2fa54 100644
--- a/src/lib/elementary/elm_genlist.c
+++ b/src/lib/elementary/elm_genlist.c
@@ -6132,7 +6132,7 @@ _elm_genlist_item_elm_widget_item_focus_set(Eo *eo_it, Elm_Gen_Item *it, Eina_Bo
if (!elm_object_focus_get(obj))
elm_object_focus_set(obj, EINA_TRUE);
- if (!efl_ui_focus_object_focus_get(obj))
+ if (!elm_object_focus_get(obj))
return;
if (eo_it != sd->focused_item)