Merge branch 'master' into sheared-search-textbox

This commit is contained in:
Dean Herbert
2022-05-03 14:12:59 +09:00
committed by GitHub
24 changed files with 296 additions and 153 deletions

View File

@ -70,6 +70,15 @@ namespace osu.Game.Graphics.UserInterface
set => slider.Current = value;
}
/// <summary>
/// A custom step value for each key press which actuates a change on this control.
/// </summary>
public float KeyboardStep
{
get => slider.KeyboardStep;
set => slider.KeyboardStep = value;
}
public BindableBool Expanded { get; } = new BindableBool();
public override bool HandlePositionalInput => true;