1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 15:22:55 +08:00

Add spacing

This commit is contained in:
Dean Herbert 2019-11-22 18:23:48 +09:00
parent dad2e5c678
commit b026197859

View File

@ -225,6 +225,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
content.Show();
loading.Show();
getScoresRequest = new GetScoresRequest(Beatmap.Value, Beatmap.Value.Ruleset, scope.Value, modSelector.SelectedMods);
getScoresRequest.Success += scores =>
{
@ -234,6 +235,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
if (!scores.Scores.Any())
noScoresPlaceholder.ShowWithScope(scope.Value);
};
api.Queue(getScoresRequest);
}
}