1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-22 06:02:54 +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 osu.Game.Graphics.Containers;
using System.Collections.Generic; using System.Collections.Generic;
using osu.Framework.Extensions.IEnumerableExtensions; using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Game.Graphics.Sprites;
using osuTK.Graphics; using osuTK.Graphics;
namespace osu.Game.Graphics.UserInterface 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, Anchor = Anchor.Centre,
Origin = Anchor.Centre, Origin = Anchor.Centre,
@ -293,7 +294,7 @@ namespace osu.Game.Graphics.UserInterface
Direction = FillDirection.Horizontal, Direction = FillDirection.Horizontal,
Children = new Drawable[] Children = new Drawable[]
{ {
new SpriteText new OsuSpriteText
{ {
Text = text.ToUpper(), Text = text.ToUpper(),
Font = OsuFont.GetFont(size: 12), Font = OsuFont.GetFont(size: 12),