1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 21:33:51 +08:00

Merge pull request #1244 from peppy/fix-incorrect-icon-state

Fix icon states being updated incorrectly when being set too early
This commit is contained in:
Dean Herbert 2017-09-11 22:13:22 +09:00 committed by GitHub
commit 19b048ef4a
2 changed files with 7 additions and 1 deletions

@ -1 +1 @@
Subproject commit cb48c7bef8c5909472c70e09059ee6ea5bf6fc8a
Subproject commit 1b479fb947da193f099df062f696b3a6164da9e0

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();
}