seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=9b47996b6c7a6e09194f4ca537c4f7e4152b573e
commit 9b47996b6c7a6e09194f4ca537c4f7e4152b573e Author: Daniel Juyung Seo <[email protected]> Date: Tue Jun 9 01:18:48 2015 +0900 interface_scrollable: Add more description to animators. It is surprising that there is no such a comment on a scrollerable interface considering the complexity of scroller. --- src/lib/elm_interface_scrollable.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/elm_interface_scrollable.h b/src/lib/elm_interface_scrollable.h index 1867075..f58ab9f 100644 --- a/src/lib/elm_interface_scrollable.h +++ b/src/lib/elm_interface_scrollable.h @@ -112,9 +112,9 @@ struct _Elm_Scrollable_Smart_Interface_Data Ecore_Idle_Enterer *hold_enterer; Ecore_Animator *hold_animator; Ecore_Animator *onhold_animator; - Ecore_Animator *momentum_animator; - Ecore_Animator *bounce_x_animator; - Ecore_Animator *bounce_y_animator; + Ecore_Animator *momentum_animator; /**< an animator which is called whenever a scroller is moving due to a flick action(mouse down, move, up) */ + Ecore_Animator *bounce_x_animator; /**< an animator to express the bouncing animation on x axis. */ + Ecore_Animator *bounce_y_animator; /**< an animator to express the bouncing animation on y axis. */ Eina_Bool bounce_x_hold : 1; Eina_Bool bounce_y_hold : 1; --
