Add simple download progress display to download buttons on playlist items

This commit is contained in:
Dean Herbert
2021-08-10 15:14:43 +09:00
parent 6da977f99a
commit 3aa72163f2
2 changed files with 9 additions and 2 deletions

View File

@ -27,7 +27,7 @@ namespace osu.Game.Graphics.UserInterface
[BackgroundDependencyLoader]
private void load()
{
Children = new Drawable[]
AddRange(new Drawable[]
{
Background = new Box
{
@ -42,7 +42,7 @@ namespace osu.Game.Graphics.UserInterface
Size = new Vector2(13),
Icon = icon,
},
};
});
}
}
}