Fix song progress graph not being correctly hidden

This commit is contained in:
Joseph Madamba 2021-07-29 23:41:01 -07:00
parent 877490fa8d
commit 451c65a2c8
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ private void updateGraphVisibility()
float barHeight = bottom_bar_height + handle_size.Y;
bar.ResizeHeightTo(ShowGraph.Value ? barHeight + graph_height : barHeight, transition_duration, Easing.In);
graph.MoveToY(ShowGraph.Value ? 0 : bottom_bar_height + graph_height, transition_duration, Easing.In);
graph.FadeTo(ShowGraph.Value ? 1 : 0, transition_duration, Easing.In);
updateInfoMargin();
}