mirror of https://github.com/ppy/osu
Use explicit culture info rather than `null`
This commit is contained in:
parent
8b30c847f9
commit
b66566e96d
|
@ -2,6 +2,7 @@
|
|||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
using System;
|
||||
using System.Globalization;
|
||||
using osu.Framework.Localisation;
|
||||
using osu.Game.Graphics.UserInterface;
|
||||
|
||||
|
@ -13,6 +14,6 @@ namespace osu.Game.Overlays.Settings.Sections
|
|||
internal class SizeSlider<T> : OsuSliderBar<T>
|
||||
where T : struct, IEquatable<T>, IComparable<T>, IConvertible, IFormattable
|
||||
{
|
||||
public override LocalisableString TooltipText => Current.Value.ToString(@"0.##x", null);
|
||||
public override LocalisableString TooltipText => Current.Value.ToString(@"0.##x", NumberFormatInfo.CurrentInfo);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue