Merge branch 'master' into reduce-panel-width

This commit is contained in:
Dan Balasescu 2018-07-17 12:51:16 +09:00 committed by GitHub
commit 61f58ed08a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ public void UpdateRank(ScoreRank newRank)
{
Rank = newRank;
if (IsLoaded)
if (LoadState >= LoadState.Ready)
updateTexture();
}
}

View File

@ -43,7 +43,7 @@ public Country Country
country = value;
if (IsLoaded)
if (LoadState >= LoadState.Ready)
sprite.Texture = getFlagTexture();
}
}