elementary/naviframe - return as soon as possible

This commit is contained in:
ChunEon Park 2013-06-08 18:11:09 +09:00
parent 8c7b28b4ed
commit 16bcf540b2
1 changed files with 4 additions and 3 deletions

View File

@ -364,12 +364,13 @@ _access_obj_process(Elm_Naviframe_Item *it, Eina_Bool is_access)
}
else
{
if (it->title_label)
_elm_access_edje_object_part_object_unregister
(WIDGET(it), elm_layout_edje_get(VIEW(it)), TITLE_ACCESS_PART);
/* to access title access object, any idea? */
ao = ((Elm_Widget_Item *)it)->access_obj;
if (!ao) return;
if (it->title_label)
_elm_access_edje_object_part_object_unregister
(WIDGET(it), elm_layout_edje_get(VIEW(it)), TITLE_ACCESS_PART);
evas_object_del(ao);
}
}