diff options
author | bobzel <zzzman@gmail.com> | 2021-01-19 14:23:26 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-01-19 14:23:26 -0500 |
commit | 28bed25b20f2882cb40e616e2ecdd7cf0793e105 (patch) | |
tree | bdfdd28268cb417e23c9625a25d94da00dfcc271 | |
parent | 0c76c27bde33c00589a1988815afbe757988d569 (diff) |
fixed timecode setting on video annotations.
-rw-r--r-- | src/client/views/nodes/VideoBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/VideoBox.tsx b/src/client/views/nodes/VideoBox.tsx index e03c30b7f..f1ef6d10b 100644 --- a/src/client/views/nodes/VideoBox.tsx +++ b/src/client/views/nodes/VideoBox.tsx @@ -472,7 +472,7 @@ export class VideoBox extends ViewBoxAnnotatableComponent<FieldViewProps, VideoD {this.uIButtons} {this.annotationLayer} {!this._marqueeing || !this._mainCont.current || !this._annotationLayer.current ? (null) : - <MarqueeAnnotator rootDoc={this.rootDoc} down={this._marqueeing} scaling={this.props.scaling} addDocument={this.addDocument} finishMarquee={this.finishMarquee} savedAnnotations={this._savedAnnotations} annotationLayer={this._annotationLayer.current} mainCont={this._mainCont.current} />} + <MarqueeAnnotator rootDoc={this.rootDoc} down={this._marqueeing} scaling={this.props.scaling} addDocument={this.addDocumentWithTimestamp} finishMarquee={this.finishMarquee} savedAnnotations={this._savedAnnotations} annotationLayer={this._annotationLayer.current} mainCont={this._mainCont.current} />} </div >); } } |