Switched over to the new LoadWrapper class for all delayed loading.

This commit is contained in:
FreezyLemon
2017-11-21 16:17:33 +01:00
parent a033eb46d3
commit 870807c265
5 changed files with 7 additions and 7 deletions

View File

@ -40,7 +40,7 @@ namespace osu.Game.Users
{
displayedAvatar?.FadeOut(300);
displayedAvatar?.Expire();
Add(displayedAvatar = new DelayedLoadWrapper(new Avatar(user)
Add(displayedAvatar = new LoadWrapper(new Avatar(user)
{
RelativeSizeAxes = Axes.Both,
OnLoadComplete = d => d.FadeInFromZero(200),