1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 16:52:55 +08:00

Fix inspection

This commit is contained in:
Dean Herbert 2019-06-20 01:10:14 +09:00
parent d0a452cdf9
commit 63d0324f96

View File

@ -30,7 +30,7 @@ namespace osu.Game.Beatmaps.Drawables
throw new ArgumentNullException(nameof(beatmap));
this.ruleset = ruleset ?? beatmap.Ruleset;
TooltipText = shouldShowTooltip ? $"{beatmap.Version}${beatmap.StarDifficulty.ToString("0.##")}" : String.Empty;
TooltipText = shouldShowTooltip ? $"{beatmap.Version}${beatmap.StarDifficulty:0.##}" : String.Empty;
Size = new Vector2(20);
}