1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-21 04:23:00 +08:00

Fix incorrect spritetext usage

This commit is contained in:
Dean Herbert 2019-12-05 14:44:34 +09:00
parent 65201cf635
commit 2c0694257c

View File

@ -13,6 +13,7 @@ using osuTK;
using osu.Game.Graphics.Containers;
using System.Collections.Generic;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Game.Graphics.Sprites;
using osuTK.Graphics;
namespace osu.Game.Graphics.UserInterface
@ -192,7 +193,7 @@ namespace osu.Game.Graphics.UserInterface
{
}
protected override Drawable CreateText(string text) => SpriteText = new SpriteText
protected override Drawable CreateText(string text) => SpriteText = new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
@ -293,7 +294,7 @@ namespace osu.Game.Graphics.UserInterface
Direction = FillDirection.Horizontal,
Children = new Drawable[]
{
new SpriteText
new OsuSpriteText
{
Text = text.ToUpper(),
Font = OsuFont.GetFont(size: 12),