1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 08:22:56 +08:00

Adjust spacing of time signature numerator input box

This commit is contained in:
Bartłomiej Dach 2022-01-23 15:20:51 +01:00
parent 4e5a1f27a8
commit bd748686fa
No known key found for this signature in database
GPG Key ID: BCECCD4FA41F6497

View File

@ -57,8 +57,12 @@ namespace osu.Game.Screens.Edit.Timing
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Margin = new MarginPadding(10),
Text = "/4",
Margin = new MarginPadding
{
Left = 5,
Right = CONTENT_PADDING_HORIZONTAL
},
Text = "/ 4",
Font = OsuFont.Default.With(size: 20)
}
}