1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:47:24 +08:00

Give more space for time values to allow for negative offsets

This commit is contained in:
Dean Herbert 2021-06-11 13:25:09 +09:00
parent 385554b01a
commit 38bf04d7ff

View File

@ -26,7 +26,7 @@ namespace osu.Game.Screens.Edit.Timing
[Resolved] [Resolved]
private EditorClock clock { get; set; } private EditorClock clock { get; set; }
public const float TIMING_COLUMN_WIDTH = 220; public const float TIMING_COLUMN_WIDTH = 230;
public IEnumerable<ControlPointGroup> ControlGroups public IEnumerable<ControlPointGroup> ControlGroups
{ {
@ -91,7 +91,7 @@ namespace osu.Game.Screens.Edit.Timing
{ {
Text = group.Time.ToEditorFormattedString(), Text = group.Time.ToEditorFormattedString(),
Font = OsuFont.GetFont(size: TEXT_SIZE, weight: FontWeight.Bold), Font = OsuFont.GetFont(size: TEXT_SIZE, weight: FontWeight.Bold),
Width = 60, Width = 70,
Anchor = Anchor.CentreLeft, Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft, Origin = Anchor.CentreLeft,
}, },