1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00

Fixed non-assigned MaxValue

This commit is contained in:
Jai Sharma 2017-06-22 19:03:31 +01:00
parent 73c004fb71
commit 62aae899fa

View File

@ -445,7 +445,7 @@ namespace osu.Game.Overlays
public ProgressBar()
{
CurrentNumber.MinValue = 0;
CurrentNumber.MinValue = 1;
CurrentNumber.MaxValue = 1;
RelativeSizeAxes = Axes.X;
Children = new Drawable[]