1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 05:42:56 +08:00

Fix layout not being invalidated when re-filtering playlist display.

This commit is contained in:
Dean Herbert 2017-05-02 16:26:11 +09:00
parent 57e63b9934
commit beb98c14b6

View File

@ -73,7 +73,13 @@ namespace osu.Game.Overlays.Music
private class ItemSearchContainer : FillFlowContainer<PlaylistItem>, IHasFilterableChildren
{
public string[] FilterTerms => new string[] { };
public bool MatchingCurrentFilter { set { } }
public bool MatchingCurrentFilter
{
set
{
InvalidateLayout();
}
}
public IEnumerable<IFilterable> FilterableChildren => Children;