mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 23:53:51 +09:00
Remove unwanted property interpolation
This commit is contained in:
@ -66,7 +66,7 @@ namespace osu.Game.Overlays.Rankings.Tables
|
|||||||
public CountryName(Country country)
|
public CountryName(Country country)
|
||||||
{
|
{
|
||||||
Font = OsuFont.GetFont(size: 12, italics: true);
|
Font = OsuFont.GetFont(size: 12, italics: true);
|
||||||
Text = $@"{country.FullName}";
|
Text = country.FullName ?? string.Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
|
Reference in New Issue
Block a user