1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 18:42:56 +08:00

Fix icon states being updated incorrectly when being set too early

This commit is contained in:
Dean Herbert 2017-09-11 21:40:58 +09:00
parent de20615df9
commit 7c7849f189

View File

@ -57,6 +57,12 @@ namespace osu.Game.Graphics
private void load(FontStore store)
{
this.store = store;
}
protected override void LoadComplete()
{
base.LoadComplete();
updateTexture();
}