{
Evas_Object *btn_left;
Evas_Object *btn_right;
+ Evas_Object *back_button;
Elm_Object_Item *it;
*genlist = elm_genlist_add(ad->md.naviframe);
retvm_if(genlist == NULL, NULL, "Cannot add genlist");
btn_right = setting_create_button(ad->md.naviframe, _("IDS_MSG_ACBUTTON_DONE_ABB"),
"naviframe/title_right", _done_btn_clicked_cb, ad);
- it = elm_naviframe_item_push(ad->md.naviframe,
- "IDS_SM_HEADER_DEFAULT_STORAGE_LOC_ABB", NULL, NULL,
- *genlist, NULL); /* add new button */
+ back_button = setting_create_button(ad->md.naviframe, NULL, NAVI_BACK_ARROW_BUTTON_STYLE, storage_default_back_cb, ad);
+ it = elm_naviframe_item_push(ad->md.naviframe, "IDS_SM_HEADER_DEFAULT_STORAGE_LOC_ABB", back_button, NULL, *genlist, NULL); /* add new button */
elm_naviframe_item_pop_cb_set(it, storage_default_back_cb, ad);
elm_object_item_part_content_set(it, "title_left_btn", btn_left);