diff options
| author | bobzel <zzzman@gmail.com> | 2021-09-25 10:44:16 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-09-25 10:44:16 -0400 |
| commit | 93996d3a25733fbf90b24e9d671aa899b2055e47 (patch) | |
| tree | 317c26a0b19743eca272a083cd122d9f0b7ffbc9 /src/client/views/nodes/VideoBox.tsx | |
| parent | 534e21a74f646b2e6fd009f6bf910679869797b4 (diff) | |
fixed play() bug from last. fixed highlight of punch in/punch out region with spacebar
Diffstat (limited to 'src/client/views/nodes/VideoBox.tsx')
| -rw-r--r-- | src/client/views/nodes/VideoBox.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/views/nodes/VideoBox.tsx b/src/client/views/nodes/VideoBox.tsx index af65cce9f..b00fb75a3 100644 --- a/src/client/views/nodes/VideoBox.tsx +++ b/src/client/views/nodes/VideoBox.tsx @@ -510,8 +510,7 @@ export class VideoBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProp return this._playRegionTimer = setTimeout(() => this.Pause(), (this._playRegionDuration) * 1000); // use setTimeout to play a specific duration } - } - if (seekTimeInSeconds < 0 && seekTimeInSeconds > -1) { + } else if (seekTimeInSeconds < 0 && seekTimeInSeconds > -1) { setTimeout(() => this.playFrom(0), -seekTimeInSeconds * 1000); } else { this.Pause(); |
