1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:47:26 +08:00

mask SongProgress

This commit is contained in:
Unknown 2019-07-05 08:30:32 +02:00
parent 1cb7a9617b
commit ed22c23f37

View File

@ -77,8 +77,8 @@ namespace osu.Game.Screens.Play
public SongProgress()
{
Height = bottom_bar_height + graph_height + handle_size.Y;
Y = bottom_bar_height;
Masking = true;
Height = bottom_bar_height + graph_height + handle_size.Y + OsuFont.Numeric.Size;
Children = new Drawable[]
{
@ -88,7 +88,6 @@ namespace osu.Game.Screens.Play
Anchor = Anchor.BottomLeft,
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Margin = new MarginPadding { Bottom = bottom_bar_height + graph_height },
},
graph = new SongProgressGraph
{