mirror of
https://github.com/ppy/osu.git
synced 2024-11-16 01:17:27 +08:00
d0b1ebff5a
This reverts commit d7d569cf4e
.
21 lines
720 B
C#
21 lines
720 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System;
|
|
using System.Numerics;
|
|
using System.Globalization;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
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> : RoundedSliderBar<T>
|
|
where T : struct, INumber<T>, IMinMaxValue<T>, IFormattable
|
|
{
|
|
public override LocalisableString TooltipText => Current.Value.ToString(@"0.##x", NumberFormatInfo.CurrentInfo);
|
|
}
|
|
}
|