elm_genlist: prepare the item when its set

so the border element is set accordingly on the parent manager which
then can be picked up for focus relations.

ref T6453
This commit is contained in:
Marcel Hollerbach 2018-01-23 20:58:59 +01:00
parent 1bdbf207f1
commit b2be688ccc
1 changed files with 9 additions and 0 deletions

View File

@ -8772,6 +8772,15 @@ _elm_genlist_efl_ui_focus_composition_prepare(Eo *obj, Elm_Genlist_Data *pd)
}
efl_ui_focus_composition_elements_set(obj, order);
EINA_INLIST_FOREACH(pd->items, item)
{
if (item->base->disabled)
continue;
efl_ui_focus_object_prepare_logical(item->base->eo_obj);
}
}
EOLIAN static void