mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Update all usages of OsuSlider.TooltipText
overrides to instead implement GetTooltipText
This commit is contained in:
@ -46,7 +46,7 @@ namespace osu.Game.Overlays.Settings.Sections.UserInterface
|
||||
|
||||
private class TimeSlider : OsuSliderBar<float>
|
||||
{
|
||||
public override LocalisableString TooltipText => Current.Value.ToString(@"N0") + "ms";
|
||||
protected override LocalisableString GetTooltipText(float value) => $"{value:N0} ms";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user