1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 20:47:26 +08:00

Remove weird update usage when 'deselect all' pressed

This commit is contained in:
Cootz 2023-05-07 15:34:01 +03:00
parent 4d235105d1
commit 60bad35145

View File

@ -208,11 +208,12 @@ namespace osu.Game.Overlays.Mods
pendingSelectionOperations.Clear(); pendingSelectionOperations.Clear();
foreach (var button in availableMods.Where(b => b.Active.Value)) foreach (var button in availableMods.Where(b => b.Active.Value))
pendingSelectionOperations.Enqueue(() => button.Active.Value = false); {
if (Alpha == 0f)
//If column is hidden trigger selection manually button.Active.Value = false; //If column is hidden change state manually without any animation
if (Alpha == 0f) else
Update(); pendingSelectionOperations.Enqueue(() => button.Active.Value = false);
}
} }
/// <summary> /// <summary>