mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 21:27:23 +08:00
22 lines
717 B
C#
22 lines
717 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.
|
|
|
|
#nullable disable
|
|
|
|
using System;
|
|
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 class SizeSlider<T> : OsuSliderBar<T>
|
|
where T : struct, IEquatable<T>, IComparable<T>, IConvertible, IFormattable
|
|
{
|
|
public override LocalisableString TooltipText => Current.Value.ToString(@"0.##x", NumberFormatInfo.CurrentInfo);
|
|
}
|
|
}
|