mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 03:25:03 +08:00
Don't show decimal point in tooltip
This commit is contained in:
parent
9f4b1f0f24
commit
e08d7daffd
@ -100,14 +100,14 @@ namespace osu.Game.Localisation
|
|||||||
public static LocalisableString TimelineTicks => new TranslatableString(getKey(@"timeline_ticks"), @"Ticks");
|
public static LocalisableString TimelineTicks => new TranslatableString(getKey(@"timeline_ticks"), @"Ticks");
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// "{0:0.0}°"
|
/// "{0:0}°"
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static LocalisableString RotationUnsnapped(float newRotation) => new TranslatableString(getKey(@"rotation_unsnapped"), @"{0:0.0}°", newRotation);
|
public static LocalisableString RotationUnsnapped(float newRotation) => new TranslatableString(getKey(@"rotation_unsnapped"), @"{0:0}°", newRotation);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// "{0:0.0}° (snapped)"
|
/// "{0:0}° (snapped)"
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static LocalisableString RotationSnapped(float newRotation) => new TranslatableString(getKey(@"rotation_snapped"), @"{0:0.0}° (snapped)", newRotation);
|
public static LocalisableString RotationSnapped(float newRotation) => new TranslatableString(getKey(@"rotation_snapped"), @"{0:0}° (snapped)", newRotation);
|
||||||
|
|
||||||
private static string getKey(string key) => $@"{prefix}:{key}";
|
private static string getKey(string key) => $@"{prefix}:{key}";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user