mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 14:32:55 +08:00
Merge pull request #1692 from Aergwyn/no-select-on-adding
No longer select Beatmapsets on import/download
This commit is contained in:
commit
7b4bbc6dc5
@ -2,7 +2,6 @@
|
||||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using OpenTK;
|
||||
using OpenTK.Input;
|
||||
@ -309,14 +308,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));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user