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

no longer select beatmapsets on import/download

let's save some ears and eyes for now
This commit is contained in:
Aergwyn 2017-12-12 11:04:11 +01:00
parent a7f5eb0a3d
commit d11bf379d8

View File

@ -309,14 +309,7 @@ namespace osu.Game.Screens.Select
carousel.Filter(criteria, debounce);
}
private void onBeatmapSetAdded(BeatmapSetInfo s)
{
Schedule(() =>
{
carousel.UpdateBeatmapSet(s);
carousel.SelectBeatmap(s.Beatmaps.First());
});
}
private void onBeatmapSetAdded(BeatmapSetInfo s) => Schedule(() => carousel.UpdateBeatmapSet(s));
private void onBeatmapSetRemoved(BeatmapSetInfo s) => Schedule(() => removeBeatmapSet(s));