Change ModSelectOverlay to never deselect the user triggered selection

This commit is contained in:
Dean Herbert
2021-06-18 13:17:55 +09:00
parent 5933e0d2d9
commit 4de27429bc
2 changed files with 6 additions and 2 deletions

View File

@ -12,7 +12,7 @@ namespace osu.Game.Overlays.Mods
base.OnModSelected(mod);
foreach (var section in ModSectionsContainer.Children)
section.DeselectTypes(mod.IncompatibleMods, true);
section.DeselectTypes(mod.IncompatibleMods, true, mod);
}
}
}