Load results pages asynchronously (#4983)

Load results pages asynchronously
This commit is contained in:
Dean Herbert
2019-06-11 18:45:11 +09:00
committed by GitHub

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);
}