Load results pages asynchronously

Reduces performance burden when first displaying pages. Closes #4977.
This commit is contained in:
Dean Herbert 2019-06-10 23:50:44 +09:00
parent 164b05abd6
commit e87123342c

View File

@ -275,7 +275,7 @@ namespace osu.Game.Screens.Ranking
currentPage = page.NewValue?.CreatePage();
if (currentPage != null)
circleInner.Add(currentPage);
LoadComponentAsync(currentPage, circleInner.Add);
}, true);
}