From beb98c14b6882e2b308395439398df4975ffdd80 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 2 May 2017 16:26:11 +0900 Subject: [PATCH] Fix layout not being invalidated when re-filtering playlist display. --- osu.Game/Overlays/Music/PlaylistList.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/osu.Game/Overlays/Music/PlaylistList.cs b/osu.Game/Overlays/Music/PlaylistList.cs index 418fcd41e8..5e2f81ccf9 100644 --- a/osu.Game/Overlays/Music/PlaylistList.cs +++ b/osu.Game/Overlays/Music/PlaylistList.cs @@ -73,7 +73,13 @@ public PlaylistList() private class ItemSearchContainer : FillFlowContainer, IHasFilterableChildren { public string[] FilterTerms => new string[] { }; - public bool MatchingCurrentFilter { set { } } + public bool MatchingCurrentFilter + { + set + { + InvalidateLayout(); + } + } public IEnumerable FilterableChildren => Children;