Fix for invalid ATSPI role on naviframe page element

ATSPI role page_tab was set on invalid object and thus ignored.

Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D8789
This commit is contained in:
Radoslaw Cybulski 2019-04-30 11:59:53 +00:00 committed by Marcel Hollerbach
parent 1aed64f269
commit a69392e838
1 changed files with 5 additions and 3 deletions

View File

@ -1283,8 +1283,6 @@ _item_new(Evas_Object *obj,
ELM_NAVIFRAME_DATA_GET(obj, sd);
eo_item = efl_add(ELM_NAVIFRAME_ITEM_CLASS, obj);
efl_access_object_role_set(eo_item, EFL_ACCESS_ROLE_PAGE_TAB);
efl_access_object_i18n_name_set(eo_item, (char*)title_label);
if (!eo_item)
{
@ -1295,9 +1293,13 @@ _item_new(Evas_Object *obj,
ELM_NAVIFRAME_ITEM_DATA_GET(eo_item, it);
//item base layout
VIEW_SET(it, elm_layout_add(obj));
Eo *elem = elm_layout_add(obj);
VIEW_SET(it, elem);
evas_object_smart_member_add(VIEW(it), obj);
efl_access_object_role_set(elem, EFL_ACCESS_ROLE_PAGE_TAB);
efl_access_object_i18n_name_set(elem, (char*)title_label);
if (!elm_widget_sub_object_add(obj, VIEW(it)))
ERR("could not add %p as sub object of %p", VIEW(it), obj);