From: Godly T.Alias Date: Wed, 15 Apr 2020 05:09:54 +0000 (+0530) Subject: [Scrollable Interface] Fix for genlist item selection issue X-Git-Tag: submit/tizen/20200506.062648~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ba5b1a9d94908870172d475ffaff080dac83df9d;p=platform%2Fupstream%2Fefl.git [Scrollable Interface] Fix for genlist item selection issue Change-Id: I1261427ce251c676bcffc1090ecc6107f9be4466 Signed-off-by: Yukti Pandey --- diff --git a/src/lib/elementary/elm_interface_scrollable.c b/src/lib/elementary/elm_interface_scrollable.c index 395b5fa..20c5f99 100644 --- a/src/lib/elementary/elm_interface_scrollable.c +++ b/src/lib/elementary/elm_interface_scrollable.c @@ -3169,7 +3169,12 @@ _elm_scroll_scroll_to_y_animator(void *data, const Efl_Event *event EINA_UNUSED) (sid->scrollto.y.end * tt); } // - if (t >= sid->scrollto.y.t_end) + + //TIZEN_ONLY(20200415): Avoid delay in scroll animator ending + //to avoid forced anim,stop on mouse down + if (t >= sid->scrollto.y.t_end || + py == sid->scrollto.y.end) + // { py = sid->scrollto.y.end; elm_interface_scrollable_content_pos_set(sid->obj, px, py, EINA_TRUE);