Skip to content

Commit

Permalink
Fixed song list's extra scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
rithik-b committed Mar 22, 2022
1 parent a996dd5 commit b36eb12
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public void SetCurrentPlaylist(IEntry entry)

private void OnScrollPositionChanged(float newPos)
{
if (scrollView == null || currentEntry == null || currentEntry.ExhaustedPages || currentScrollPosition == newPos)
if (scrollView == null || currentEntry == null || currentEntry.ExhaustedPages || currentScrollPosition == newPos || songLoadSemaphore.CurrentCount == 0)
{
return;
}
Expand Down

0 comments on commit b36eb12

Please sign in to comment.