Make star filter range bindables BindableDoubles

Due to using Bindable<double>s previously, song select's filter control
would not apply tolerance when checking IsDefault, therefore wrongly
hiding maps with star ratings above 10.1.
This commit is contained in:
Bartłomiej Dach 2020-02-01 22:48:46 +01:00
parent c904ae485a
commit e894acf53c
1 changed files with 2 additions and 2 deletions

View File

@ -149,8 +149,8 @@ public void Activate()
private readonly IBindable<RulesetInfo> ruleset = new Bindable<RulesetInfo>();
private readonly Bindable<bool> showConverted = new Bindable<bool>();
private readonly Bindable<double> minimumStars = new Bindable<double>();
private readonly Bindable<double> maximumStars = new Bindable<double>();
private readonly Bindable<double> minimumStars = new BindableDouble();
private readonly Bindable<double> maximumStars = new BindableDouble();
public readonly Box Background;