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
commit 000d5843b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

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