mirror of
https://github.com/ppy/osu.git
synced 2026-06-04 07:03:39 +08:00
Add back base.IsPresent call
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user