Move inside leaderboard

This commit is contained in:
Dean Herbert
2019-09-19 14:52:31 +09:00
parent a7b6895d4c
commit 4967ffd8e5
2 changed files with 45 additions and 6 deletions

View File

@ -80,6 +80,18 @@ namespace osu.Game.Screens.Select.Leaderboards
if (filterMods)
UpdateScores();
};
TopScore.BindValueChanged(newTopScore);
}
private void newTopScore(ValueChangedEvent<APILegacyUserTopScoreInfo> score)
{
Content.Clear();
if (score.NewValue != null)
{
}
}
protected override bool IsOnlineScope => Scope != BeatmapLeaderboardScope.Local;