mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Remove Alpha 0.001 hack.
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user