1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 04:02:57 +08:00

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
commit 8faca7c9ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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