1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-27 11:12:59 +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(); content.Show();
loading.Show(); loading.Show();
getScoresRequest = new GetScoresRequest(Beatmap.Value, Beatmap.Value.Ruleset, scope.Value, modSelector.SelectedMods); getScoresRequest = new GetScoresRequest(Beatmap.Value, Beatmap.Value.Ruleset, scope.Value, modSelector.SelectedMods);
getScoresRequest.Success += scores => getScoresRequest.Success += scores =>
{ {
@ -234,6 +235,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
if (!scores.Scores.Any()) if (!scores.Scores.Any())
noScoresPlaceholder.ShowWithScope(scope.Value); noScoresPlaceholder.ShowWithScope(scope.Value);
}; };
api.Queue(getScoresRequest); api.Queue(getScoresRequest);
} }
} }