Merge pull request #4407 from peppy/fix-square-graph

Fix SquareGraph not correctly filling columns when loaded with a non-zero time
This commit is contained in:
Dean Herbert
2019-03-05 14:37:51 +09:00
committed by GitHub

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();
}