Merge branch 'master' into better-medal-loading

This commit is contained in:
Dean Herbert 2017-10-14 12:29:15 +09:00 committed by GitHub
commit 9385fd1cfa
1 changed files with 4 additions and 0 deletions

View File

@ -134,6 +134,7 @@ private void updatePreviewTrack(bool playing)
else
{
Preview?.Stop();
loading = false;
}
}
@ -143,6 +144,8 @@ private void beginAudioLoad()
{
if (trackLoader != null) return;
loading = true;
Add(new AsyncLoadWrapper(trackLoader = new TrackLoader($"https://b.ppy.sh/preview/{BeatmapSet.OnlineBeatmapSetID}.mp3")
{
OnLoadComplete = d =>
@ -152,6 +155,7 @@ private void beginAudioLoad()
Preview = (d as TrackLoader)?.Preview;
Playing.TriggerChange();
loading = false;
},
}));
}