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
1 changed files with 1 additions and 8 deletions

View File

@ -309,14 +309,7 @@ private void filterChanged(FilterCriteria criteria, bool debounce = true)
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));