1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 10:22:56 +08:00

Fix top score not being selectable

This commit is contained in:
smoogipoo 2019-09-19 20:47:33 +09:00
parent e2f7d4bc62
commit 94d3bcc612

View File

@ -96,7 +96,10 @@ namespace osu.Game.Screens.Select.Leaderboards
UpdateScores();
};
Content.Add(topScoreContainer = new UserTopScoreContainer());
Content.Add(topScoreContainer = new UserTopScoreContainer
{
ScoreSelected = s => ScoreSelected?.Invoke(s)
});
}
protected override void Reset()