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
1 changed files with 6 additions and 5 deletions

View File

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