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

Add slight offset for timeline BPM display to avoid overlaps

This commit is contained in:
Dean Herbert 2024-07-12 14:34:01 +09:00
parent 9a7a0cdb34
commit 2ad2ae0c16
No known key found for this signature in database

View File

@ -24,7 +24,8 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline
Origin = Anchor.TopLeft;
X = (float)group.Time;
// offset visually to avoid overlapping timeline tick display.
X = (float)group.Time + 6;
}
protected override void LoadComplete()