1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 21:43:22 +08:00

Use ScheduleAfterChildren to better match comment

This commit is contained in:
Dean Herbert 2021-05-13 17:29:11 +09:00
parent 3ea469813c
commit ebce3fd3c7

View File

@ -40,7 +40,7 @@ namespace osu.Game.Skinning
base.LoadComplete();
// schedule is required to allow children to run their LoadComplete and take on their correct sizes.
Schedule(() => applyDefaults?.Invoke(this));
ScheduleAfterChildren(() => applyDefaults?.Invoke(this));
}
}
}