mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Replace all usage of IBindableList.GetBoundCopy
This commit is contained in:
@ -98,7 +98,7 @@ namespace osu.Game.Screens.Edit.Timing
|
||||
|
||||
private class ControlGroupAttributes : CompositeDrawable
|
||||
{
|
||||
private readonly IBindableList<ControlPoint> controlPoints;
|
||||
private readonly IBindableList<ControlPoint> controlPoints = new BindableList<ControlPoint>();
|
||||
|
||||
private readonly FillFlowContainer fill;
|
||||
|
||||
@ -112,7 +112,7 @@ namespace osu.Game.Screens.Edit.Timing
|
||||
Spacing = new Vector2(2)
|
||||
};
|
||||
|
||||
controlPoints = group.ControlPoints.GetBoundCopy();
|
||||
controlPoints.BindTo(group.ControlPoints);
|
||||
}
|
||||
|
||||
[Resolved]
|
||||
|
Reference in New Issue
Block a user