1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-19 16:22:54 +08:00

Remove obvious comment

This commit is contained in:
Bartłomiej Dach 2023-06-18 14:04:00 +02:00
parent 64e96c6d82
commit 4c78144d10
No known key found for this signature in database

View File

@ -215,7 +215,7 @@ namespace osu.Game.Overlays.Mods
foreach (var button in availableMods.Where(b => b.Active.Value)) foreach (var button in availableMods.Where(b => b.Active.Value))
{ {
if (!button.Visible) if (!button.Visible)
button.Active.Value = false; //If mod panel is hidden change state manually without any animation button.Active.Value = false;
else else
pendingSelectionOperations.Enqueue(() => button.Active.Value = false); pendingSelectionOperations.Enqueue(() => button.Active.Value = false);
} }