Fix remaining issues

This commit is contained in:
Dean Herbert
2019-02-28 13:31:40 +09:00
parent 3e1f283281
commit 26d53d06a9
241 changed files with 673 additions and 330 deletions

View File

@ -44,12 +44,14 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
private readonly ScoreModsContainer modsContainer;
private APIScoreInfo score;
public APIScoreInfo Score
{
get { return score; }
set
{
if (score == value) return;
score = value;
avatar.User = username.User = score.User;
@ -207,6 +209,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
{
if (valueText.Text == value)
return;
valueText.Text = value;
}
get { return valueText.Text; }