1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 11:12:54 +08:00

Fix SquareGraph not correctly filling columns when loaded with a non-zero time

This commit is contained in:
Dean Herbert 2019-03-05 13:16:41 +09:00
parent 7c54e67b6e
commit 5bb0511f0a

View File

@ -242,7 +242,11 @@ namespace osu.Game.Screens.Play
// Reverse drawableRows so when iterating through them they start at the bottom
drawableRows.Reverse();
}
protected override void LoadComplete()
{
base.LoadComplete();
fillActive();
}