seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=9d1e54b15aef1b2cbe44f42b327ba741ef66e130
commit 9d1e54b15aef1b2cbe44f42b327ba741ef66e130 Author: Daniel Juyung Seo <seojuyu...@gmail.com> Date: Tue Oct 22 23:13:32 2013 +0900 elc_naviframe.h: added more description about stack architecture of naviframe. --- src/lib/elc_naviframe.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/lib/elc_naviframe.h b/src/lib/elc_naviframe.h index 1413496..968fcc6 100644 --- a/src/lib/elc_naviframe.h +++ b/src/lib/elc_naviframe.h @@ -10,9 +10,11 @@ * * A naviframe holds views (or pages) as its items. Those items are * organized in a stack, so that new items get pushed on top of the - * old, and only the topmost view is displayed at one time. The - * transition between views is animated, depending on the theme - * applied to the widget. + * old, and only the topmost view is displayed at one time. Due to the + * characteristics of a stack, even though you push a new item, previous item + * is not deleted. Previous item will be shown when you pop new item. The + * transition between views is animated, depending on the theme applied to the + * widget. * * Naviframe views hold spaces to various elements, which are: * - back button, used to navigate to previous views, --