On Fri, Feb 22, 2013 at 12:19 AM, Bruno Dilly <[email protected]> wrote: > On Thu, Feb 21, 2013 at 7:32 AM, Jaehwan Kim <[email protected]> > wrote: >> In elementary_test "Scroller", >> When you flick the same direction and same amount, >> the scroller has an acceleration >> even if you flick it after ending animation. >> >> Currently I fix the scroller don't have an acceleration in that situation. >> It occur only in paged scroller. > > Does it need to be backported ? >
Yes and need ChangeLog/NEWS. Daniel Juyung Seo (SeoZ) >> >> >> 2013년 2월 21일 목요일에 Iván Briano님이 작성: >> >>> On Thu, Feb 21, 2013 at 6:36 AM, Enlightenment SVN >>> <[email protected] <javascript:;>> wrote: >>> > Log: >>> > Small bug in scroller when the page is set. >>> > >>> > >>> >>> What bug? Triggered how? How do we test this? >>> >>> > Author: jaehwan >>> > Date: 2013-02-21 01:36:14 -0800 (Thu, 21 Feb 2013) >>> > New Revision: 84277 >>> > Trac: http://trac.enlightenment.org/e/changeset/84277 >>> > >>> > Modified: >>> > trunk/elementary/src/lib/elm_interface_scrollable.c >>> > >>> > Modified: trunk/elementary/src/lib/elm_interface_scrollable.c >>> > =================================================================== >>> > --- trunk/elementary/src/lib/elm_interface_scrollable.c 2013-02-21 >>> 08:40:09 UTC (rev 84276) >>> > +++ trunk/elementary/src/lib/elm_interface_scrollable.c 2013-02-21 >>> 09:36:14 UTC (rev 84277) >>> > @@ -2029,6 +2029,7 @@ >>> > eo_do(sid->obj, elm_scrollable_interface_content_pos_set(px, >>> py)); >>> > sid->down.sx = px; >>> > sid->down.x = sid->down.history[0].x; >>> > + sid->down.pdx = 0; >>> > _elm_scroll_wanted_coordinates_update(sid, px, py); >>> > sid->scrollto.x.animator = NULL; >>> > if ((!sid->scrollto.y.animator) && >>> (!sid->down.bounce_y_animator)) >>> > @@ -2063,6 +2064,7 @@ >>> > eo_do(sid->obj, elm_scrollable_interface_content_pos_set(px, >>> py)); >>> > sid->down.sy = py; >>> > sid->down.y = sid->down.history[0].y; >>> > + sid->down.pdy = 0; >>> > _elm_scroll_wanted_coordinates_update(sid, px, py); >>> > sid->scrollto.y.animator = NULL; >>> > if ((!sid->scrollto.x.animator) && >>> (!sid->down.bounce_x_animator)) >>> > >>> > >>> > >>> ------------------------------------------------------------------------------ >>> > Everyone hates slow websites. So do we. >>> > Make your web apps faster with AppDynamics >>> > Download AppDynamics Lite for free today: >>> > http://p.sf.net/sfu/appdyn_d2d_feb >>> > _______________________________________________ >>> > enlightenment-svn mailing list >>> > [email protected] <javascript:;> >>> > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn >>> >>> >>> ------------------------------------------------------------------------------ >>> Everyone hates slow websites. So do we. >>> Make your web apps faster with AppDynamics >>> Download AppDynamics Lite for free today: >>> http://p.sf.net/sfu/appdyn_d2d_feb >>> _______________________________________________ >>> enlightenment-devel mailing list >>> [email protected] <javascript:;> >>> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel >>> >> ------------------------------------------------------------------------------ >> Everyone hates slow websites. So do we. >> Make your web apps faster with AppDynamics >> Download AppDynamics Lite for free today: >> http://p.sf.net/sfu/appdyn_d2d_feb >> _______________________________________________ >> enlightenment-devel mailing list >> [email protected] >> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel > > > > -- > Bruno Dilly > Lead Developer > ProFUSION embedded systems > http://profusion.mobi > > ------------------------------------------------------------------------------ > Everyone hates slow websites. So do we. > Make your web apps faster with AppDynamics > Download AppDynamics Lite for free today: > http://p.sf.net/sfu/appdyn_d2d_feb > _______________________________________________ > enlightenment-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_feb _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
