1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 09:32:55 +08:00
This commit is contained in:
Andrei Zavatski 2022-12-12 14:57:07 +03:00
parent d2b3533356
commit b0d475cd8b

View File

@ -23,12 +23,8 @@ namespace osu.Game.Graphics.UserInterface
{
public LocalisableString Text
{
get => SpriteText?.Text ?? default;
set
{
if (SpriteText != null)
SpriteText.Text = value;
}
get => SpriteText.Text;
set => SpriteText.Text = value;
}
private Color4? backgroundColour;