Rename event to be more generic (and add comprehensive xmldoc)

This commit is contained in:
Dean Herbert
2022-09-13 14:59:30 +09:00
parent fd48249eef
commit f53507828c
2 changed files with 9 additions and 6 deletions

View File

@ -24,7 +24,7 @@ namespace osu.Game.Screens.Edit.Compose.Components
{
base.LoadComplete();
editorBeatmap.SelectionBlueprintsShouldBeSorted += SortInternal;
editorBeatmap.BeatmapReprocessed += SortInternal;
}
public override void Add(SelectionBlueprint<HitObject> drawable)
@ -70,7 +70,7 @@ namespace osu.Game.Screens.Edit.Compose.Components
base.Dispose(isDisposing);
if (editorBeatmap != null)
editorBeatmap.SelectionBlueprintsShouldBeSorted -= SortInternal;
editorBeatmap.BeatmapReprocessed -= SortInternal;
}
}
}