mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Fix several schedule-related issues arising from new column addition
This commit is contained in:
@ -708,7 +708,18 @@ namespace osu.Game.Overlays.Mods
|
||||
FinishTransforms();
|
||||
}
|
||||
|
||||
protected override bool RequiresChildrenUpdate => base.RequiresChildrenUpdate || (Column as ModColumn)?.SelectionAnimationRunning == true;
|
||||
protected override bool RequiresChildrenUpdate
|
||||
{
|
||||
get
|
||||
{
|
||||
bool result = base.RequiresChildrenUpdate;
|
||||
|
||||
if (Column is ModColumn modColumn)
|
||||
result |= !modColumn.ItemsLoaded || modColumn.SelectionAnimationRunning;
|
||||
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
private void updateState()
|
||||
{
|
||||
|
Reference in New Issue
Block a user