mirror of
https://github.com/osukey/osukey.git
synced 2025-05-17 03:27:21 +09:00
Fix BeatmapCarousel's flush not correctly applying selection changes
They may have been delayed until the next Update, which is too late in this case.
This commit is contained in:
parent
72531229fe
commit
d4aeb3d00b
@ -328,7 +328,10 @@ namespace osu.Game.Screens.Select
|
|||||||
public void FlushPendingFilterOperations()
|
public void FlushPendingFilterOperations()
|
||||||
{
|
{
|
||||||
if (FilterTask?.Completed == false)
|
if (FilterTask?.Completed == false)
|
||||||
|
{
|
||||||
applyActiveCriteria(false, false);
|
applyActiveCriteria(false, false);
|
||||||
|
Update();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Filter(FilterCriteria newCriteria, bool debounce = true)
|
public void Filter(FilterCriteria newCriteria, bool debounce = true)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user