1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 06:42:54 +08:00

Move ValueChanged bind back to load()

This commit is contained in:
smoogipoo 2021-02-25 22:09:41 +09:00
parent 649ce20e35
commit c3eb44137b

View File

@ -67,10 +67,10 @@ namespace osu.Game.Screens.Select
};
}
protected override void LoadComplete()
[BackgroundDependencyLoader]
private void load()
{
base.LoadComplete();
ruleset.BindValueChanged(_ => updateDisplay(), true);
ruleset.BindValueChanged(_ => updateDisplay());
}
protected override void PopIn()