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

Fix restore default button mutating transforms during load

This commit is contained in:
Bartłomiej Dach 2021-02-27 11:33:08 +01:00
parent 46fa82e4a7
commit 52e81385a6

View File

@ -207,7 +207,9 @@ namespace osu.Game.Overlays.Settings
UpdateState();
}
public void UpdateState()
public void UpdateState() => Scheduler.AddOnce(updateState);
private void updateState()
{
if (bindable == null)
return;