1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-11 15:27:20 +08:00

Merge pull request #28883 from peppy/fix-timing-point-misalign

Fix summary timeline timing points being incorrectly positioned
This commit is contained in:
Bartłomiej Dach 2024-07-16 12:28:17 +02:00 committed by GitHub
commit 0f106abf53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -41,6 +41,8 @@ namespace osu.Game.Screens.Edit.Components.Timelines.Summary.Parts
case TimingControlPoint:
AddInternal(new ControlPointVisualisation(point)
{
// importantly, override the x position being set since we do that above.
X = 0,
Y = -0.4f,
});
break;