mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Trim unnecessary raw string prefixes
This commit is contained in:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user