mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Move collection change event binding to LoadComplete
This commit is contained in:
@ -33,8 +33,10 @@ namespace osu.Game.Graphics.Containers
|
||||
|
||||
protected abstract OsuRearrangeableListItem<TModel> CreateOsuDrawable(TModel item);
|
||||
|
||||
protected OsuRearrangeableListContainer()
|
||||
protected override void LoadComplete()
|
||||
{
|
||||
base.LoadComplete();
|
||||
|
||||
Items.CollectionChanged += (_, args) =>
|
||||
{
|
||||
if (args.Action == NotifyCollectionChangedAction.Move)
|
||||
|
Reference in New Issue
Block a user