1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:47:24 +08:00

Schedule group refresh when loaded

This commit is contained in:
smoogipoo 2019-11-05 22:50:38 +09:00
parent 68a81e0eb0
commit d762ec959c

View File

@ -60,7 +60,10 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
if (end != null)
bindEvents(end);
refresh();
if (IsLoaded)
scheduleRefresh();
else
refresh();
}
}