diff options
| author | bobzel <zzzman@gmail.com> | 2022-03-08 22:11:24 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-03-08 22:11:24 -0500 |
| commit | 5d50e0673fde8aabb2d87a75624b40d3b9c65df3 (patch) | |
| tree | 7a005eed62f829a685e819229f37bea470264aaa /src/client/views/nodes/VideoBox.tsx | |
| parent | d010c3875b4a6b113f4f2099f201abbf1b8d4eb0 (diff) | |
fixed following a link to a video segment that triggers a navigation back to the source of the link
Diffstat (limited to 'src/client/views/nodes/VideoBox.tsx')
| -rw-r--r-- | src/client/views/nodes/VideoBox.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/nodes/VideoBox.tsx b/src/client/views/nodes/VideoBox.tsx index 615d595c0..ba7ecfec6 100644 --- a/src/client/views/nodes/VideoBox.tsx +++ b/src/client/views/nodes/VideoBox.tsx @@ -126,7 +126,7 @@ export class VideoBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProp } this._youtubePlayer && SelectionManager.DeselectAll(); // if we don't deselect the player, then we get an annoying YouTube spinner I guess telling us we're paused. this._playTimer = undefined; - this.updateTimecode(); + this.props.renderDepth !== -1 && this.updateTimecode(); } @action public FullScreen = () => { @@ -542,8 +542,8 @@ export class VideoBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProp trimStart={0} trimEnd={this.duration} trimDuration={this.duration} - setStartTrim={() => { }} - setEndTrim={() => { }} + setStartTrim={emptyFunction} + setEndTrim={emptyFunction} /> </div>; } |
