Fix focus glow appearing above range slider's nubs

This commit is contained in:
Dean Herbert 2024-10-25 16:13:02 +09:00
parent c666fa7472
commit 1fc221bb39
No known key found for this signature in database
1 changed files with 5 additions and 1 deletions

View File

@ -115,7 +115,9 @@ public RangeSlider()
KeyboardStep = 0.1f,
RelativeSizeAxes = Axes.X,
Y = vertical_offset,
}
},
upperBound.Nub.CreateProxy(),
lowerBound.Nub.CreateProxy(),
};
}
@ -160,6 +162,8 @@ public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) =>
protected partial class BoundSlider : RoundedSliderBar<double>
{
public new Nub Nub => base.Nub;
public string? DefaultString;
public LocalisableString? DefaultTooltip;
public string? TooltipSuffix;