diff --git a/osu.Game/Overlays/Direct/DownloadProgressBar.cs b/osu.Game/Overlays/Direct/DownloadProgressBar.cs index cc5a98c575..c73ce38c54 100644 --- a/osu.Game/Overlays/Direct/DownloadProgressBar.cs +++ b/osu.Game/Overlays/Direct/DownloadProgressBar.cs @@ -49,6 +49,8 @@ namespace osu.Game.Overlays.Direct break; case DownloadState.Downloaded: progressBar.FadeIn(400, Easing.OutQuint); + progressBar.ResizeHeightTo(4, 400, Easing.OutQuint); + progressBar.Current.Value = 1; progressBar.FillColour = colours.Yellow; break;