diff --git a/osu.Game.Rulesets.Karaoke/Edit/Lyrics/Rows/Extends/RecordingTimeTags/RecordingTimeTagPart.cs b/osu.Game.Rulesets.Karaoke/Edit/Lyrics/Rows/Extends/RecordingTimeTags/RecordingTimeTagPart.cs index 792613f8e..33995109b 100644 --- a/osu.Game.Rulesets.Karaoke/Edit/Lyrics/Rows/Extends/RecordingTimeTags/RecordingTimeTagPart.cs +++ b/osu.Game.Rulesets.Karaoke/Edit/Lyrics/Rows/Extends/RecordingTimeTags/RecordingTimeTagPart.cs @@ -120,7 +120,7 @@ private class RecordingTimeTagVisualization : CompositeDrawable, IHasCustomToolt [Resolved] private ILyricTimeTagsChangeHandler lyricTimeTagsChangeHandler { get; set; } - private readonly Bindable bindableTIme; + private readonly Bindable bindableTime; private readonly RightTriangle timeTagTriangle; @@ -138,7 +138,7 @@ public RecordingTimeTagVisualization(Lyric lyric, TimeTag timeTag) RelativePositionAxes = Axes.X; Size = new Vector2(RecordingTimeTagEditor.TIMELINE_HEIGHT); - bindableTIme = timeTag.TimeBindable.GetBoundCopy(); + bindableTime = timeTag.TimeBindable.GetBoundCopy(); InternalChildren = new Drawable[] { timeTagTriangle = new RightTriangle @@ -163,7 +163,7 @@ private void load(OsuColour colours, RecordingTimeTagEditor timeline) { timeTagTriangle.Colour = colours.GetTimeTagColour(timeTag); - bindableTIme.BindValueChanged(e => + bindableTime.BindValueChanged(e => { bool hasValue = e.NewValue.HasValue; Alpha = hasValue ? 1 : 0;