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:
parent
e43c233b48
commit
22c6d6c526
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user