Fix correct mode filter not being applied when first entering song select.

This commit is contained in:
Dean Herbert
2017-04-05 17:27:01 +09:00
parent 8173d01d78
commit 4b1588a21d
2 changed files with 4 additions and 4 deletions

View File

@ -179,11 +179,11 @@ namespace osu.Game.Screens.Select
public void Filter(FilterCriteria newCriteria = null, bool debounce = true)
{
if (!IsLoaded) return;
if (newCriteria != null)
criteria = newCriteria;
if (!IsLoaded) return;
Action perform = delegate
{
filterTask = null;