Rename placeholder display flag property to make sense

This commit is contained in:
Salman Ahmed
2022-07-16 06:07:53 +03:00
parent 9c81241f4c
commit 4968859e69
5 changed files with 7 additions and 7 deletions

View File

@ -22,9 +22,9 @@ namespace osu.Game.Users.Drawables
}
/// <summary>
/// Whether to show a place holder on null country.
/// Whether to show a place holder on unknown country.
/// </summary>
public bool ShowPlaceholderOnNull = true;
public bool ShowPlaceholderOnUnknown = true;
/// <summary>
/// Perform an action in addition to showing the country ranking.
@ -39,7 +39,7 @@ namespace osu.Game.Users.Drawables
protected override Drawable CreateDrawable(Country country)
{
if (country == default && !ShowPlaceholderOnNull)
if (country == default && !ShowPlaceholderOnUnknown)
return null;
return new Container