Rename TimelineHitObjectDisplay to TimelineBlueprintContainer

This commit is contained in:
Dean Herbert
2020-01-23 12:17:46 +09:00
parent 9d2a46df89
commit 477e1b7d27
3 changed files with 5 additions and 5 deletions

View File

@ -32,6 +32,6 @@ namespace osu.Game.Screens.Edit.Compose
return beatmapSkinProvider.WithChild(rulesetSkinProvider.WithChild(composer));
}
protected override Drawable CreateTimelineContent() => composer == null ? base.CreateTimelineContent() : new TimelineHitObjectDisplay(EditorBeatmap);
protected override Drawable CreateTimelineContent() => composer == null ? base.CreateTimelineContent() : new TimelineBlueprintContainer(EditorBeatmap);
}
}