mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 07:32:55 +08:00
Merge pull request #27551 from EVAST9919/flag-tooltip-alloc
Reduce allocations while hovering `DrawableFlag`
This commit is contained in:
commit
d74ae12321
@ -15,11 +15,12 @@ namespace osu.Game.Users.Drawables
|
|||||||
{
|
{
|
||||||
private readonly CountryCode countryCode;
|
private readonly CountryCode countryCode;
|
||||||
|
|
||||||
public LocalisableString TooltipText => countryCode == CountryCode.Unknown ? string.Empty : countryCode.GetDescription();
|
public LocalisableString TooltipText { get; }
|
||||||
|
|
||||||
public DrawableFlag(CountryCode countryCode)
|
public DrawableFlag(CountryCode countryCode)
|
||||||
{
|
{
|
||||||
this.countryCode = countryCode;
|
this.countryCode = countryCode;
|
||||||
|
TooltipText = countryCode == CountryCode.Unknown ? string.Empty : countryCode.GetDescription();
|
||||||
}
|
}
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
|
Loading…
Reference in New Issue
Block a user