fix(osu.Game): reset Y axis of the bars in hit distribution graph at the first drawing

This commit is contained in:
Acid Chicken (硫酸鶏)
2022-09-12 16:25:29 +09:00
parent 0d0e2e7bcc
commit 4f298db066

View File

@ -278,7 +278,10 @@ namespace osu.Game.Screens.Ranking.Statistics
updateBasalHeight();
foreach (var boxOriginal in boxOriginals)
{
boxOriginal.Y = 0;
boxOriginal.Height = basalHeight;
}
float offsetValue = 0;