mirror of https://github.com/ppy/osu
Fix mutation after disposal in `TeamEditorScreen`
This commit is contained in:
parent
f7f0546f2a
commit
76be9a829c
|
@ -298,10 +298,10 @@ private void load()
|
|||
}, true);
|
||||
}
|
||||
|
||||
private void updatePanel()
|
||||
private void updatePanel() => Scheduler.AddOnce(() =>
|
||||
{
|
||||
drawableContainer.Child = new UserGridPanel(user.ToAPIUser()) { Width = 300 };
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue