mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 16:42:57 +08:00
Add back base.IsPresent
call
This commit is contained in:
parent
6081c29ae1
commit
423fae52f7
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user