1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 03:03:05 +08:00

Make text colour white

This commit is contained in:
AlFasGD 2018-07-24 09:21:01 +03:00
parent a833fa3d92
commit 2f452c162c

View File

@ -12,13 +12,5 @@ namespace osu.Game.Screens.Edit.Screens.Setup.Components
public class SetupTextBox : OsuTextBox
{
protected override float LeftRightPadding => 15;
[BackgroundDependencyLoader]
private void load(OsuColour osuColour)
{
BorderColour = osuColour.Blue;
}
protected override Drawable GetDrawableCharacter(char c) => new OsuSpriteText { Text = c.ToString(), Colour = BorderColour, TextSize = CalculatedTextSize };
}
}