···137137 }
138138 }
139139140140+ public bool FilteringActive
141141+ {
142142+ set { }
143143+ }
144144+140145 public IEnumerable<IFilterable> FilterableChildren => Children.OfType<IFilterable>();
141146142147 protected override Container<Drawable> Content => flowContainer;
···173178 Hide();
174179 }
175180 }
181181+182182+ public bool FilteringActive
183183+ {
184184+ set { }
185185+ }
176186 }
177187178188 private class SearchableText : SpriteText, IFilterable
···186196 else
187197 Hide();
188198 }
199199+ }
200200+201201+ public bool FilteringActive
202202+ {
203203+ set { }
189204 }
190205 }
191206 }
+5
osu.Framework/Graphics/Containers/IFilterable.cs
···99 /// Whether the current object is matching (ie. visible) given the current filter criteria of a parent.
1010 /// </summary>
1111 bool MatchingFilter { set; }
1212+1313+ /// <summary>
1414+ /// Whether a filter is currently being performed.
1515+ /// </summary>
1616+ bool FilteringActive { set; }
1217 }
1318}