mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 10:12:54 +08:00
Merge pull request #24390 from peppy/tournament-client-fix-startup-crash
Fix potential startup crash due to early application of animations
This commit is contained in:
commit
998395c7a7
@ -136,11 +136,11 @@ namespace osu.Game.Tournament.Components
|
|||||||
if (match.NewValue != null)
|
if (match.NewValue != null)
|
||||||
match.NewValue.PicksBans.CollectionChanged += picksBansOnCollectionChanged;
|
match.NewValue.PicksBans.CollectionChanged += picksBansOnCollectionChanged;
|
||||||
|
|
||||||
updateState();
|
Scheduler.AddOnce(updateState);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void picksBansOnCollectionChanged(object? sender, NotifyCollectionChangedEventArgs e)
|
private void picksBansOnCollectionChanged(object? sender, NotifyCollectionChangedEventArgs e)
|
||||||
=> updateState();
|
=> Scheduler.AddOnce(updateState);
|
||||||
|
|
||||||
private BeatmapChoice? choice;
|
private BeatmapChoice? choice;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user