1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 14:32:55 +08:00

Adjust visual appearance of preview time part

- Use slightly different hue of green to distinguish from difficulty
  control points. The colour is still not ideal, but picking
  a distinctive enough hue is pretty hard.

- Place the preview time part at the bottom rather at the top.
  Not sure why it was at the top; not only could it overlap with the
  control points, but it also looked quite badly misaligned there
  when bookmarks were displayed at the bottom.
This commit is contained in:
Bartłomiej Dach 2023-01-01 19:39:21 +01:00
parent 656bf12b3d
commit 452ebddfd2
No known key found for this signature in database
2 changed files with 2 additions and 3 deletions

View File

@ -32,7 +32,7 @@ namespace osu.Game.Screens.Edit.Components.Timelines.Summary.Parts
} }
[BackgroundDependencyLoader] [BackgroundDependencyLoader]
private void load(OsuColour colours) => Colour = colours.Lime; private void load(OsuColour colours) => Colour = colours.Green1;
} }
} }
} }

View File

@ -44,9 +44,8 @@ namespace osu.Game.Screens.Edit.Components.Timelines.Summary
new PreviewTimePart new PreviewTimePart
{ {
Anchor = Anchor.Centre, Anchor = Anchor.Centre,
Origin = Anchor.BottomCentre, Origin = Anchor.TopCentre,
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Y = -10,
Height = 0.35f Height = 0.35f
}, },
new Container new Container