Fixed columns not being able to have zero fill

This commit is contained in:
DrabWeb
2017-02-09 19:29:12 -04:00
parent 843b58c8f4
commit 0327c46d36
3 changed files with 12 additions and 2 deletions

View File

@ -70,6 +70,9 @@ namespace osu.Game.Screens.Play
private void recalculateValues()
{
// Resizes values to fit the amount of columns and stores it in calculatedValues
// Defaults to all zeros if values is null
calculatedValues.RemoveAll(delegate { return true; });
if (values == null)