1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 00:02:54 +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() public ProgressBar()
{ {
CurrentNumber.MinValue = 0; CurrentNumber.MinValue = 0;
CurrentNumber.MinValue = 1; CurrentNumber.MaxValue = 1;
RelativeSizeAxes = Axes.X; RelativeSizeAxes = Axes.X;
Children = new Drawable[] Children = new Drawable[]