1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 12:02:55 +08:00

Add back base.IsPresent call

This commit is contained in:
Dean Herbert 2022-04-15 10:19:36 +09:00
parent 6081c29ae1
commit 423fae52f7
2 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ namespace osu.Game.Overlays.Settings
public IEnumerable<string> Keywords { get; set; }
public override bool IsPresent => MatchingFilter;
public override bool IsPresent => base.IsPresent && MatchingFilter;
public bool MatchingFilter { get; set; } = true;

View File

@ -21,7 +21,7 @@ namespace osu.Game.Overlays.Settings
protected FillFlowContainer FlowContent;
protected override Container<Drawable> Content => FlowContent;
public override bool IsPresent => MatchingFilter;
public override bool IsPresent => base.IsPresent && MatchingFilter;
private IBindable<SettingsSection> selectedSection;