1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-05 17:04:35 +08:00

Rename RankChartLineGraph to UserLineGraph

This commit is contained in:
Andrei Zavatski
2020-02-09 00:28:38 +03:00
Unverified
parent f2bdb350df
commit 9e5da60614
+4 -4
View File
@@ -21,13 +21,13 @@ namespace osu.Game.Overlays.Profile
{
protected const float FADE_DURATION = 150;
protected readonly RankChartLineGraph Graph;
protected readonly UserLineGraph Graph;
protected KeyValuePair<TKey, TValue>[] Data;
protected int DataIndex;
protected UserGraph()
{
Add(Graph = new RankChartLineGraph
Add(Graph = new UserLineGraph
{
RelativeSizeAxes = Axes.Both,
Alpha = 0
@@ -77,7 +77,7 @@ namespace osu.Game.Overlays.Profile
protected abstract object GetTooltipContent();
protected class RankChartLineGraph : LineGraph
protected class UserLineGraph : LineGraph
{
private readonly CircularContainer movingBall;
private readonly Container bar;
@@ -86,7 +86,7 @@ namespace osu.Game.Overlays.Profile
public Action<int> OnBallMove;
public RankChartLineGraph()
public UserLineGraph()
{
Add(bar = new Container
{