mirror of https://github.com/ppy/osu
Standardise spacing and padding between UR and PP counters
This commit is contained in:
parent
e31ea49dd4
commit
b9f9c27770
|
@ -15,6 +15,7 @@
|
|||
using osu.Game.Rulesets.Judgements;
|
||||
using osu.Game.Rulesets.Scoring;
|
||||
using osu.Game.Skinning;
|
||||
using osuTK;
|
||||
|
||||
namespace osu.Game.Screens.Play.HUD
|
||||
{
|
||||
|
@ -98,6 +99,7 @@ public TextComponent()
|
|||
InternalChild = new FillFlowContainer
|
||||
{
|
||||
AutoSizeAxes = Axes.Both,
|
||||
Spacing = new Vector2(2),
|
||||
Children = new Drawable[]
|
||||
{
|
||||
text = new OsuSpriteText
|
||||
|
@ -111,8 +113,8 @@ public TextComponent()
|
|||
Anchor = Anchor.BottomLeft,
|
||||
Origin = Anchor.BottomLeft,
|
||||
Font = OsuFont.Numeric.With(size: 8, fixedWidth: true),
|
||||
Text = "UR",
|
||||
Padding = new MarginPadding { Bottom = 1.5f },
|
||||
Text = @"UR",
|
||||
Padding = new MarginPadding { Bottom = 1.5f }, // align baseline better
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue