Add automated test coverage of simple scenarios for RangeSlider

This commit is contained in:
Dean Herbert
2022-11-29 15:10:21 +09:00
parent db7f429e39
commit 56a694fb04
2 changed files with 24 additions and 4 deletions

View File

@ -22,6 +22,7 @@ namespace osu.Game.Graphics.UserInterface
/// </summary>
public Bindable<double> LowerBound
{
get => lowerBound.Current;
set => lowerBound.Current = value;
}
@ -30,6 +31,7 @@ namespace osu.Game.Graphics.UserInterface
/// </summary>
public Bindable<double> UpperBound
{
get => upperBound.Current;
set => upperBound.Current = value;
}