bvaughn / react-virtualized

React components for efficiently rendering large lists and tabular data
http://bvaughn.github.io/react-virtualized/
MIT License
26.12k stars 3.06k forks source link

Fix onScrollbarPresenceChange not invoking at correct timing #1712

Open NoyChan opened 2 years ago

NoyChan commented 2 years ago

Hi I noticed that the calculation of verticalScrollBarSize does not consider the current horizontalScrollBarSize, and vice versa, which lead to incorrect invoke timing of onScrollbarPresenceChange, as shown below before after adding this._horizontalScrollBarSize and this._verticalScrollBarSize, it work normal after