mirror of
https://github.com/ppy/osu
synced 2025-01-25 15:23:02 +00:00
Trim unnecessary raw string prefixes
This commit is contained in:
parent
299ea23612
commit
ce47617476
@ -75,7 +75,7 @@ namespace osu.Game.Overlays.Profile.Header.Components
|
||||
private class RankGraphTooltip : UserGraphTooltip
|
||||
{
|
||||
public RankGraphTooltip()
|
||||
: base(@"Global Ranking")
|
||||
: base("Global Ranking")
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -18,7 +18,7 @@ namespace osu.Game.Overlays.Profile.Sections.Historical
|
||||
/// <summary>
|
||||
/// Text describing the value being plotted on the graph, which will be displayed as a prefix to the value in the <see cref="HistoryGraphTooltip"/>.
|
||||
/// </summary>
|
||||
public string TooltipCounterName { get; set; } = @"Plays";
|
||||
public string TooltipCounterName { get; set; } = "Plays";
|
||||
|
||||
protected override float GetDataPointHeight(long playCount) => playCount;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user