mirror of https://github.com/ppy/osu
Remove unwanted property interpolation
This commit is contained in:
parent
791bf6bc01
commit
c68c347503
|
@ -66,7 +66,7 @@ private class CountryName : OsuSpriteText
|
|||
public CountryName(Country country)
|
||||
{
|
||||
Font = OsuFont.GetFont(size: 12, italics: true);
|
||||
Text = $@"{country.FullName}";
|
||||
Text = country.FullName ?? string.Empty;
|
||||
}
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
|
|
Loading…
Reference in New Issue