mirror of
https://github.com/ppy/osu
synced 2024-12-16 20:05:41 +00:00
Adjust timeline ticks to add a bit more body back
This commit is contained in:
parent
685b19a571
commit
9a7a0cdb34
@ -147,20 +147,12 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline
|
||||
|
||||
var line = getNextUsableLine();
|
||||
line.X = xPos;
|
||||
line.Width = PointVisualisation.MAX_WIDTH * size.X;
|
||||
|
||||
if (showTimingChanges.Value)
|
||||
{
|
||||
line.Anchor = Anchor.BottomLeft;
|
||||
line.Origin = Anchor.BottomCentre;
|
||||
line.Height = 0.7f + size.Y * 0.28f;
|
||||
}
|
||||
else
|
||||
{
|
||||
line.Anchor = Anchor.CentreLeft;
|
||||
line.Origin = Anchor.Centre;
|
||||
line.Height = 0.92f + size.Y * 0.07f;
|
||||
}
|
||||
line.Anchor = Anchor.CentreLeft;
|
||||
line.Origin = Anchor.Centre;
|
||||
|
||||
line.Height = 0.6f + size.Y * 0.4f;
|
||||
line.Width = PointVisualisation.MAX_WIDTH * (0.6f + 0.4f * size.X);
|
||||
|
||||
line.Colour = colour;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user