1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-25 03:09:54 +08:00

Merge pull request #35106 from smoogipoo/matchmaking-fix-player-list

Fix players positioning on next matchmaking round
This commit is contained in:
Dean Herbert
2025-09-24 15:38:17 +09:00
committed by GitHub
Unverified
@@ -244,8 +244,12 @@ namespace osu.Game.Screens.OnlinePlay.Matchmaking
public void ReleasePanels()
{
foreach (var panel in Children)
panel.ReleasePanel();
// Matches the schedule in AcquirePanels.
ScheduleAfterChildren(() =>
{
foreach (var panel in Children)
panel.ReleasePanel();
});
}
}