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:
parent
73c004fb71
commit
62aae899fa
@ -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[]
|
||||||
|
Loading…
Reference in New Issue
Block a user