1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 07:42:57 +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
parent 0b6c0592e4
commit d4c9eb013e
No known key found for this signature in database

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
{