mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 08:49:59 +09: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 IEnumerable<string> Keywords { get; set; }
|
||||||
|
|
||||||
public override bool IsPresent => MatchingFilter;
|
public override bool IsPresent => base.IsPresent && MatchingFilter;
|
||||||
|
|
||||||
public bool MatchingFilter { get; set; } = true;
|
public bool MatchingFilter { get; set; } = true;
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ namespace osu.Game.Overlays.Settings
|
|||||||
protected FillFlowContainer FlowContent;
|
protected FillFlowContainer FlowContent;
|
||||||
protected override Container<Drawable> Content => FlowContent;
|
protected override Container<Drawable> Content => FlowContent;
|
||||||
|
|
||||||
public override bool IsPresent => MatchingFilter;
|
public override bool IsPresent => base.IsPresent && MatchingFilter;
|
||||||
|
|
||||||
private IBindable<SettingsSection> selectedSection;
|
private IBindable<SettingsSection> selectedSection;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user