You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
new items are loaded and the view will be a mix up.
I found that it's caused by the following commit. If I comment out the call to ScrollTo(index), it will be fine.
26627ae - fix: update the scroll position by a scrollbar
// by https://github.com/webitube// Note: If the scroller position changed but the scroll velocity is exactly zero, the movement was done via a scrollbar. In this case, we need to ScrollTo() the indicated position directly.// Note 2: The normalized scrollbar position is opposite from the ScrollTo() index. This is why the we take (1.0 - pos) instead of pos directly. if(_scroll.velocity.magnitude==0.0f){varpos=(Type==0)?vector.y:vector.x;varindex=Mathf.RoundToInt(_count*(1.0f-pos));ScrollTo(index);}
bandicam.0076.mp4
The text was updated successfully, but these errors were encountered:
Demo5
I found that it's caused by the following commit. If I comment out the call to
ScrollTo(index)
, it will be fine.26627ae - fix: update the scroll position by a scrollbar
bandicam.0076.mp4
The text was updated successfully, but these errors were encountered: