mirror of
https://github.com/ppy/osu
synced 2024-12-26 08:53:10 +00:00
Fix bindable usage
This commit is contained in:
parent
65f2d1f875
commit
55c938e5da
@ -26,7 +26,7 @@ namespace osu.Game.Online
|
||||
/// </summary>
|
||||
protected readonly Bindable<DownloadState> State = new Bindable<DownloadState>();
|
||||
|
||||
protected readonly Bindable<double> Progress = new Bindable<double>();
|
||||
protected readonly BindableNumber<double> Progress = new BindableNumber<double> { MinValue = 0, MaxValue = 1 };
|
||||
|
||||
protected DownloadTrackingComposite(TModel model = null)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user