1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 16:27:26 +08:00

Remove unwanted property interpolation

This commit is contained in:
Andrei Zavatski 2020-02-14 00:40:52 +03:00
parent 791bf6bc01
commit c68c347503

View File

@ -66,7 +66,7 @@ namespace osu.Game.Overlays.Rankings.Tables
public CountryName(Country country)
{
Font = OsuFont.GetFont(size: 12, italics: true);
Text = $@"{country.FullName}";
Text = country.FullName ?? string.Empty;
}
[BackgroundDependencyLoader]