Fix all score are highlighted on local scope

This commit is contained in:
Ganendra Afrasya 2019-11-01 23:19:15 +07:00
parent ce3b34a768
commit 8da15f6897
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ protected override APIRequest FetchScores(Action<IEnumerable<ScoreInfo>> scoresC
return req;
}
protected override LeaderboardScore CreateDrawableScore(ScoreInfo model, int index) => new LeaderboardScore(model, index)
protected override LeaderboardScore CreateDrawableScore(ScoreInfo model, int index) => new LeaderboardScore(model, index, IsOnlineScope)
{
Action = () => ScoreSelected?.Invoke(model)
};