Changed type of IHasFilterTerms.FilterTerms according to framework update

This commit is contained in:
MrTheMake
2017-09-13 16:18:02 +02:00
parent b08844d2db
commit 89b5a6670e
9 changed files with 13 additions and 10 deletions

View File

@ -23,7 +23,7 @@ namespace osu.Game.Overlays.Settings
public abstract string Header { get; }
public IEnumerable<IFilterable> FilterableChildren => Children.OfType<IFilterable>();
public string[] FilterTerms => new[] { Header };
public IEnumerable<string> FilterTerms => new[] { Header };
private const int header_size = 26;
private const int header_margin = 25;