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
Thanks for the Fix #9 Tokou. Unfortunately I am still experiencing some issues if the FIRST section has no rows. In this case the second section header is displayed twice as soon as I scroll down the list. From what I understand, this behaviour does not occur if I disable the changes from Fix #21 .
The text was updated successfully, but these errors were encountered:
Hello AustrianDudes I have been having the same issues as you have and disabling the changes in fix#21 leads to another bug where the first section header at index 0 takes the place of the header at index 1. Instead of removing the changes from fix#21 you should modify the changes in fix#9
Change this block here:
else if ((currIsHeader && firstVisibleItem > 0) || needScrolling) {
TO:
else if ((currIsHeader && realFirstVisibleItem > 0) || needScrolling) {
Thanks for the Fix #9 Tokou. Unfortunately I am still experiencing some issues if the FIRST section has no rows. In this case the second section header is displayed twice as soon as I scroll down the list. From what I understand, this behaviour does not occur if I disable the changes from Fix #21 .
The text was updated successfully, but these errors were encountered: