1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00
This commit is contained in:
EVAST9919 2017-11-21 10:36:53 +03:00 committed by Dean Herbert
parent 5ffdaf711e
commit e48c515d52
2 changed files with 5 additions and 5 deletions

View File

@ -27,9 +27,9 @@ namespace osu.Game.Overlays.Profile
private readonly OsuTextFlowContainer infoTextLeft;
private readonly LinkFlowContainer infoTextRight;
private readonly FillFlowContainer<SpriteText> scoreText, scoreNumberText;
protected readonly RankChart rankGraph;
private readonly RankChart rankGraph;
private readonly Container coverContainer, chartContainer, supporterTag;
private readonly Container coverContainer, supporterTag;
private readonly Sprite levelBadge;
private readonly SpriteText levelText;
private readonly GradeBadge gradeSSPlus, gradeSS, gradeSPlus, gradeS, gradeA;
@ -274,7 +274,7 @@ namespace osu.Game.Overlays.Profile
}
}
},
chartContainer = new Container
new Container
{
RelativeSizeAxes = Axes.X,
Anchor = Anchor.BottomCentre,

View File

@ -24,7 +24,7 @@ namespace osu.Game.Overlays.Profile
private const float secondary_textsize = 13;
private const float padding = 10;
private const float fade_duration = 150;
private const int rankedDays = 88;
private const int ranked_days = 88;
private readonly SpriteText rankText, performanceText, relativeText;
private readonly RankChartLineGraph graph;
@ -135,7 +135,7 @@ namespace osu.Game.Overlays.Profile
private void showHistoryRankTexts(int dayIndex)
{
rankText.Text = $"#{ranks[dayIndex].Value:#,0}";
relativeText.Text = dayIndex + 1 == ranks.Length ? "Now" : $"{rankedDays - ranks[dayIndex].Key} days ago";
relativeText.Text = dayIndex + 1 == ranks.Length ? "Now" : $"{ranked_days - ranks[dayIndex].Key} days ago";
}
public override bool Invalidate(Invalidation invalidation = Invalidation.All, Drawable source = null, bool shallPropagate = true)