Rename OsuSliderBar.cs as NormalSliderBar.cs

This commit is contained in:
mk56-spn
2023-01-26 12:12:56 +01:00
parent 9677a8e3b3
commit 3988131475
19 changed files with 27 additions and 27 deletions

View File

@ -13,7 +13,7 @@ namespace osu.Game.Overlays.Settings.Sections
/// <summary>
/// A slider intended to show a "size" multiplier number, where 1x is 1.0.
/// </summary>
public partial class SizeSlider<T> : OsuSliderBar<T>
public partial class SizeSlider<T> : NormalSliderBar<T>
where T : struct, IEquatable<T>, IComparable<T>, IConvertible, IFormattable
{
public override LocalisableString TooltipText => Current.Value.ToString(@"0.##x", NumberFormatInfo.CurrentInfo);