Update mod columns even if they're not present/offscreen

Important to make "select/deselect all" operations work on all columns
simultaneously, even if they're offscreen. Unfortunately by the nature
of how the existing selection animation works, it is hard-tied to the
update loop, so we need to compensate.
This commit is contained in:
Bartłomiej Dach
2022-05-06 18:08:11 +02:00
parent 9514a5cef7
commit 18e4c3ed0f
2 changed files with 3 additions and 1 deletions

View File

@ -399,7 +399,7 @@ namespace osu.Game.Overlays.Mods
private readonly Queue<Action> pendingSelectionOperations = new Queue<Action>();
protected bool SelectionAnimationRunning => pendingSelectionOperations.Count > 0;
internal bool SelectionAnimationRunning => pendingSelectionOperations.Count > 0;
protected override void Update()
{