Move back to DI-ing adjustable clock into SummaryTimeline

This commit is contained in:
smoogipoo
2018-04-12 13:37:02 +09:00
parent fbc50d6030
commit a2484fbf56
3 changed files with 3 additions and 10 deletions

View File

@ -17,15 +17,8 @@ namespace osu.Game.Screens.Edit.Components.Timelines.Summary
/// </summary>
public class SummaryTimeline : BottomBarContainer
{
private readonly IAdjustableClock adjustableClock;
public SummaryTimeline(IAdjustableClock adjustableClock)
{
this.adjustableClock = adjustableClock;
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
private void load(OsuColour colours, IAdjustableClock adjustableClock)
{
TimelinePart markerPart, controlPointPart, bookmarkPart, breakPart;