fix graph not completely hiding

This commit is contained in:
Unknown
2019-07-05 08:05:18 +02:00
parent 608223cbb4
commit e69160a0ce

View File

@ -172,7 +172,7 @@ namespace osu.Game.Screens.Play
float barHeight = bottom_bar_height + handle_size.Y;
bar.ResizeHeightTo(CollapseGraph.Value ? barHeight : barHeight + graph_height, transition_duration, Easing.In);
graph.MoveToY(CollapseGraph.Value ? graph_height : 0, transition_duration, Easing.In);
graph.MoveToY(CollapseGraph.Value ? bottom_bar_height + graph_height : 0, transition_duration, Easing.In);
updateInfoMargin();
}