diff --git a/osu.Game/Screens/Select/FilterControl.cs b/osu.Game/Screens/Select/FilterControl.cs index 78dd60d560..9050b9b4cb 100644 --- a/osu.Game/Screens/Select/FilterControl.cs +++ b/osu.Game/Screens/Select/FilterControl.cs @@ -51,7 +51,7 @@ namespace osu.Game.Screens.Select } }; - searchTextBox.OnCommit += (sender, newText) => + searchTextBox.OnChange += (TextBox sender, bool newText) => { if (newText) FilterChanged?.Invoke(); diff --git a/osu.Game/Screens/Select/PlaySongSelect.cs b/osu.Game/Screens/Select/PlaySongSelect.cs index 27d37e7028..535ef3a44c 100644 --- a/osu.Game/Screens/Select/PlaySongSelect.cs +++ b/osu.Game/Screens/Select/PlaySongSelect.cs @@ -222,7 +222,7 @@ namespace osu.Game.Screens.Select } if (newSelection != null) selectBeatmap(newSelection.BeatmapSet.Beatmaps[0]); - if (changed || true) + if (changed) carousel.InvalidateVisible(); }, 250); }