1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 04:41:54 +08:00

Fix bugged initial state of matching filter flag

Was preventing mod preset panels from refiltering correctly on ruleset
change due to the `matchingFilter == value` guard.
This commit is contained in:
Bartłomiej Dach
2023-06-18 14:51:50 +02:00
Unverified
parent 0b6c0592e4
commit d4c9eb013e
+1 -1
View File
@@ -286,7 +286,7 @@ namespace osu.Game.Overlays.Mods
public abstract IEnumerable<LocalisableString> FilterTerms { get; }
private bool matchingFilter;
private bool matchingFilter = true;
public virtual bool MatchingFilter
{