1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 21:02:55 +08:00

Remove unused OnTimelineLoaded flow

This commit is contained in:
Dean Herbert 2022-05-24 16:33:20 +09:00
parent a905731053
commit 1d196262d0

View File

@ -125,16 +125,8 @@ namespace osu.Game.Screens.Edit
mainContent.Add(content);
content.FadeInFromZero(300, Easing.OutQuint);
LoadComponentAsync(new TimelineArea(CreateTimelineContent()), t =>
{
timelineContainer.Add(t);
OnTimelineLoaded(t);
LoadComponentAsync(new TimelineArea(CreateTimelineContent()), timelineContainer.Add);
});
});
}
protected virtual void OnTimelineLoaded(TimelineArea timelineArea)
{
}
protected abstract Drawable CreateMainContent();