1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-25 18:57:18 +08:00

Disallow focus on difficulty range slider

Alternative to https://github.com/ppy/osu/pull/31749.
Closes https://github.com/ppy/osu/issues/31559.
This commit is contained in:
Dean Herbert 2025-02-14 00:03:30 +09:00
parent 37db539226
commit 315a480931
No known key found for this signature in database

View File

@ -162,6 +162,8 @@ namespace osu.Game.Graphics.UserInterface
protected partial class BoundSlider : RoundedSliderBar<double>
{
public override bool AcceptsFocus => false;
public new Nub Nub => base.Nub;
public string? DefaultString;