1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 06:52:56 +08:00

Prevent checkbox from toggle on when column have no valid panels

This commit is contained in:
Cootz 2023-05-29 14:22:40 +03:00
parent e43c233b48
commit 22c6d6c526

View File

@ -151,6 +151,9 @@ namespace osu.Game.Overlays.Mods
if (toggleAllCheckbox != null && !SelectionAnimationRunning)
{
toggleAllCheckbox.Alpha = availableMods.Any(panel => panel.IsValid) ? 1 : 0;
//Prevent checkbox from checking when column have on valid panels
if (availableMods.Any(panel => panel.IsValid))
toggleAllCheckbox.Current.Value = availableMods.Where(panel => panel.IsValid).All(panel => panel.Active.Value);
}
}