mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 14:17:26 +08:00
Convert inline math to not so inline to make operation more explicit
This commit is contained in:
parent
3d771c0fc7
commit
d3cb910cf8
@ -312,12 +312,14 @@ namespace osu.Game.Online.Leaderboards
|
||||
{
|
||||
scrollContainer.Add(scoreFlowContainer = newFlow);
|
||||
|
||||
int i = 0;
|
||||
double delay = 0;
|
||||
|
||||
foreach (var s in scoreFlowContainer.Children)
|
||||
{
|
||||
using (s.BeginDelayedSequence(i++ * 50))
|
||||
using (s.BeginDelayedSequence(delay))
|
||||
s.Show();
|
||||
|
||||
delay += 50;
|
||||
}
|
||||
|
||||
scrollContainer.ScrollToStart(false);
|
||||
|
Loading…
Reference in New Issue
Block a user