Don't update count twice immediately

Co-authored-by: Bartłomiej Dach <dach.bartlomiej@gmail.com>
This commit is contained in:
Dan Balasescu
2022-02-23 13:42:47 +09:00
committed by GitHub
parent 2bea485af8
commit 71a012bea6

View File

@ -41,7 +41,7 @@ namespace osu.Game.Screens.OnlinePlay.Lounge.Components
{
base.LoadComplete();
PlaylistItemStats.BindValueChanged(_ => updateCount(), true);
PlaylistItemStats.BindValueChanged(_ => updateCount());
Playlist.BindCollectionChanged((_, __) => updateCount(), true);
}