1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 18:42:56 +08:00

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
No known key found for this signature in database
GPG Key ID: BCECCD4FA41F6497

View File

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