mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Fixed columns not being able to have zero fill
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user