Fix "importing" state display

This commit is contained in:
Dean Herbert
2019-01-31 19:09:04 +09:00
parent 041e3bf823
commit b89694a969
2 changed files with 12 additions and 0 deletions

View File

@ -124,6 +124,17 @@ namespace osu.Game.Overlays.BeatmapSet.Buttons
};
break;
case DownloadState.Downloaded:
textSprites.Children = new Drawable[]
{
new OsuSpriteText
{
Text = "Importing...",
TextSize = 13,
Font = @"Exo2.0-Bold",
},
};
break;
case DownloadState.LocallyAvailable:
this.FadeOut(200);
break;
case DownloadState.NotDownloaded: