seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=38c617de9c06f1969c69b78a586da2dbf95d4ab9
commit 38c617de9c06f1969c69b78a586da2dbf95d4ab9 Author: taehyub <[email protected]> Date: Tue Dec 16 16:13:33 2014 +0900 change elm_naviframe_itepm_pop_to api document Summary: Naviframe: modify elm_naviframe_item_pop_to api's document guide more specific to avoid confusion. the elm_naviframe_item_pop_to api does not pop all items from the top to the target item. It destory the items between the top and the target item, after that pop and destory the top item. so, the descriptions of elm_naviframe_item_pop_to() is modified to avoid cunfusion like above. Reviewers: Hermet, woohyun, seoz Subscribers: seoz Differential Revision: https://phab.enlightenment.org/D1780 --- src/lib/elm_naviframe_item.eo | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/elm_naviframe_item.eo b/src/lib/elm_naviframe_item.eo index 6090d53..8106b0e 100644 --- a/src/lib/elm_naviframe_item.eo +++ b/src/lib/elm_naviframe_item.eo @@ -32,7 +32,8 @@ class Elm_Naviframe_Item(Elm_Widget_Item) methods { pop_to { /*@ - Pop the items between the top and the above one on the given item. + Pop the top item and delete the items between the top and the above + one on the given item. The items between the top and the given item will be deleted first, and then the top item will be popped at last. --
