1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-21 01:00:27 +08:00

Fix playlist events running too early

Screens are async loaded
This commit is contained in:
smoogipoo
2018-12-18 17:08:02 +09:00
Unverified
parent aabe6c68f5
commit e4e1bde5da
+3 -2
View File
@@ -139,9 +139,10 @@ namespace osu.Game.Screens.Multi.Match
playlistBind.ItemsRemoved += _ => setFromPlaylist();
}
[BackgroundDependencyLoader]
private void load()
protected override void LoadComplete()
{
base.LoadComplete();
playlistBind.BindTo(room.Playlist);
}