Add protection from recursive updates from external selection

This commit is contained in:
Bartłomiej Dach
2022-05-11 19:40:56 +02:00
parent 83ba06e7af
commit fc24a56478

View File

@ -369,6 +369,9 @@ namespace osu.Game.Overlays.Mods
private void updateFromExternalSelection()
{
if (externalSelectionUpdateInProgress)
return;
externalSelectionUpdateInProgress = true;
var newSelection = new List<Mod>();