mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 19:43:22 +08:00
Merge pull request #3028 from peppy/fix-drawable-load-regression
Fix regression in drawable rank first display
This commit is contained in:
commit
9ee54dabfa
@ -47,7 +47,7 @@ namespace osu.Game.Screens.Select.Leaderboards
|
|||||||
{
|
{
|
||||||
Rank = newRank;
|
Rank = newRank;
|
||||||
|
|
||||||
if (IsLoaded)
|
if (LoadState >= LoadState.Ready)
|
||||||
updateTexture();
|
updateTexture();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -43,7 +43,7 @@ namespace osu.Game.Users
|
|||||||
|
|
||||||
country = value;
|
country = value;
|
||||||
|
|
||||||
if (IsLoaded)
|
if (LoadState >= LoadState.Ready)
|
||||||
sprite.Texture = getFlagTexture();
|
sprite.Texture = getFlagTexture();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user