Fix build issues

This commit is contained in:
iiSaLMaN 2019-07-21 12:34:52 +03:00
parent 57fc5cbda8
commit affd0b2878

View File

@ -23,7 +23,7 @@ namespace osu.Game.Graphics.Sprites
text = value; text = value;
spriteText.Text = text; spriteText.Text = text;
glowingText.Text = text; blurredText.Text = text;
} }
} }
@ -37,7 +37,7 @@ namespace osu.Game.Graphics.Sprites
font = value.With(fixedWidth: true); font = value.With(fixedWidth: true);
spriteText.Font = font; spriteText.Font = font;
glowingText.Font = font; blurredText.Font = font;
} }
} }
@ -51,7 +51,7 @@ namespace osu.Game.Graphics.Sprites
textSize = value; textSize = value;
spriteText.Size = textSize; spriteText.Size = textSize;
glowingText.Size = textSize; blurredText.Size = textSize;
} }
} }
@ -63,8 +63,8 @@ namespace osu.Game.Graphics.Sprites
public ColourInfo GlowColour public ColourInfo GlowColour
{ {
get => glowingText.Colour; get => blurredText.Colour;
set => glowingText.Colour = value; set => blurredText.Colour = value;
} }
public GlowingSpriteText() public GlowingSpriteText()