Update BeatmapSetOverlay to use BeatmapSetDownloader.

This commit is contained in:
DrabWeb
2018-06-04 20:27:34 -03:00
parent 698a42f145
commit 9377ffb784
3 changed files with 36 additions and 54 deletions

View File

@ -32,9 +32,9 @@ namespace osu.Game.Overlays.Direct
Action = downloader.Download;
downloader.Downloaded.ValueChanged += e =>
downloader.Downloaded.ValueChanged += d =>
{
if (e)
if (d)
this.FadeOut(200);
else
this.FadeIn(200);