diff options
| author | bobzel <zzzman@gmail.com> | 2020-12-13 21:06:38 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-12-13 21:06:38 -0500 |
| commit | 1cc523907d05be7975dabb1901b91b3485083616 (patch) | |
| tree | 37b1201e8cfa67260af61b9c912b7863348e962c /src/client/views/nodes/VideoBox.tsx | |
| parent | f9f0d6ca06e850e0ea68d7b7b701de46d9449169 (diff) | |
now working on video and web box's to fix their annotation registration with doc decorations.
Diffstat (limited to 'src/client/views/nodes/VideoBox.tsx')
| -rw-r--r-- | src/client/views/nodes/VideoBox.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client/views/nodes/VideoBox.tsx b/src/client/views/nodes/VideoBox.tsx index b446dab22..06a305515 100644 --- a/src/client/views/nodes/VideoBox.tsx +++ b/src/client/views/nodes/VideoBox.tsx @@ -414,8 +414,9 @@ export class VideoBox extends ViewBoxAnnotatableComponent<FieldViewProps, VideoD return this.addDocument(doc); } - @computed get contentScaling() { return this.props.scaling?.() || 1 } + @computed get contentScaling() { return this.props.scaling?.() || 1; } scaling = () => this.contentScaling; + screenToLocalTransform = () => this.props.ScreenToLocalTransform().scale(1 / this.scaling()); contentFunc = () => [this.youtubeVideoId ? this.youtubeContent : this.content]; render() { return (<div className="videoBox" onContextMenu={this.specificContextMenu} @@ -434,7 +435,7 @@ export class VideoBox extends ViewBoxAnnotatableComponent<FieldViewProps, VideoD select={emptyFunction} active={this.annotationsActive} ContentScaling={this.scaling} - ScreenToLocalTransform={Transform.Identity} + ScreenToLocalTransform={this.screenToLocalTransform} whenActiveChanged={this.whenActiveChanged} removeDocument={this.removeDocument} moveDocument={this.moveDocument} |
