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

@ -41,7 +41,7 @@ namespace osu.Desktop.VisualTests
List<int> newValues = new List<int>();
for (int i = 0; i < 1000; i++)
{
newValues.Add(random.Next(1, 11));
newValues.Add(random.Next(0, 11));
}
progress.DisplayValues(newValues);