1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 17:13:06 +08:00

Merge pull request #2289 from peppy/fix-song-select-flush

Fix BeatmapCarousel's flush not correctly applying selection changes
This commit is contained in:
Dan Balasescu 2018-03-23 18:59:12 +09:00 committed by GitHub
commit 1ffe0c7416
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -328,7 +328,10 @@ namespace osu.Game.Screens.Select
public void FlushPendingFilterOperations()
{
if (FilterTask?.Completed == false)
{
applyActiveCriteria(false, false);
Update();
}
}
public void Filter(FilterCriteria newCriteria, bool debounce = true)