From b3c6f5c4abb93c6178bb3d90aa68fad86e690097 Mon Sep 17 00:00:00 2001 From: bobzel Date: Sun, 26 Sep 2021 16:18:41 -0400 Subject: variable renaming refactoring. --- src/client/views/nodes/VideoBox.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/client/views/nodes/VideoBox.tsx') diff --git a/src/client/views/nodes/VideoBox.tsx b/src/client/views/nodes/VideoBox.tsx index eb75754b9..0c4693907 100644 --- a/src/client/views/nodes/VideoBox.tsx +++ b/src/client/views/nodes/VideoBox.tsx @@ -405,7 +405,7 @@ export class VideoBox extends ViewBoxAnnotatableComponent { - if (fullPlay) this.setAnchorTime(this.timeline?.trimStart || 0); + if (fullPlay) this.setPlayheadTime(this.timeline?.trimStart || 0); this.Pause(); }, this._playRegionDuration * 1000); } else { @@ -452,7 +452,7 @@ export class VideoBox extends ViewBoxAnnotatableComponent this.props.whenChildContentsActiveChanged(this._isAnyChildContentActive = isActive)); timelineScreenToLocal = () => this.props.ScreenToLocalTransform().scale(this.scaling()).translate(0, -this.heightPercent / 100 * this.props.PanelHeight()); - setAnchorTime = (time: number) => this.player!.currentTime = this.layoutDoc._currentTimecode = time; + setPlayheadTime = (time: number) => this.player!.currentTime = this.layoutDoc._currentTimecode = time; timelineHeight = () => this.props.PanelHeight() * (100 - this.heightPercent) / 100; playing = () => this._playing; @@ -549,7 +549,7 @@ export class VideoBox extends ViewBoxAnnotatableComponent