Remove Alpha 0.001 hack.

This commit is contained in:
Dean Herbert
2017-03-15 17:07:56 +09:00
parent 9d0c687453
commit 78efecb89d
2 changed files with 6 additions and 5 deletions

View File

@ -31,8 +31,10 @@ namespace osu.Game.Screens.Select.Leaderboards
int i = 0;
foreach(var s in scores)
{
scrollFlow.Add(new LeaderboardScore(s, i + 1));
i++;
scrollFlow.Add(new LeaderboardScore(s, 1 + i++)
{
AlwaysPresent = true
});
}
scrollContainer.ScrollTo(0f, false);