naviframe - remove the back button callback if the button is unset on the naviframe

This commit is contained in:
ChunEon Park 2013-03-08 21:13:25 +09:00
parent 64bae3c5d5
commit 7e575bab38
3 changed files with 7 additions and 1 deletions

View File

@ -1132,3 +1132,7 @@
2013-03-08 Jaehwan Kim
* Fix the toolbar cannot be unselected when it's mode is ELM_OBJECT_SELECT_MODE_ALWAYS.
2013-03-08 ChunEon Park (Hermet)
* Remove the back button callback if the button is unset on the naviframe.

View File

@ -178,6 +178,7 @@ Fixes:
* Fix elm_conform didn't change indicator mode when create.
* After elm_win is created, if there is no manual focus setting, only elm_win should get focus when focus state is changed.
* Fix the toolbar cannot be unselected when it's mode is ELM_OBJECT_SELECT_MODE_ALWAYS.
* Remove the back button callback if the back button is unset on the naviframe.
Removals:

View File

@ -582,7 +582,8 @@ _item_title_prev_btn_unset(Elm_Naviframe_Item *it)
evas_object_event_callback_del
(content, EVAS_CALLBACK_DEL, _item_title_prev_btn_del_cb);
evas_object_smart_callback_del(content, SIG_CLICKED,
_on_item_back_btn_clicked);
it->title_prev_btn = NULL;
return content;
}