aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/WebBox.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-12-13 21:06:38 -0500
committerbobzel <zzzman@gmail.com>2020-12-13 21:06:38 -0500
commit1cc523907d05be7975dabb1901b91b3485083616 (patch)
tree37b1201e8cfa67260af61b9c912b7863348e962c /src/client/views/nodes/WebBox.tsx
parentf9f0d6ca06e850e0ea68d7b7b701de46d9449169 (diff)
now working on video and web box's to fix their annotation registration with doc decorations.
Diffstat (limited to 'src/client/views/nodes/WebBox.tsx')
-rw-r--r--src/client/views/nodes/WebBox.tsx7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/client/views/nodes/WebBox.tsx b/src/client/views/nodes/WebBox.tsx
index 511e8f537..d1d734255 100644
--- a/src/client/views/nodes/WebBox.tsx
+++ b/src/client/views/nodes/WebBox.tsx
@@ -646,7 +646,10 @@ export class WebBox extends ViewBoxAnnotatableComponent<FieldViewProps, WebDocum
marqueeX = () => this._marqueeX;
marqueeY = () => this._marqueeY;
marqueeing = () => this._marqueeing;
- scrollXf = () => this.props.ScreenToLocalTransform().translate(NumCast(this.layoutDoc._scrollLeft), NumCast(this.layoutDoc._scrollTop));
+ @computed get contentScaling() { return this.props.scaling?.() || 1; }
+ scrollXf = () => this.props.ScreenToLocalTransform().translate(NumCast(this.layoutDoc._scrollLeft), NumCast(this.layoutDoc._scrollTop)).scale(1 / this.contentScaling);
+ scaling = () => this.contentScaling;
+ screenToLocalTransform = () => this.props.ScreenToLocalTransform().scale(1 / this.scaling())
render() {
return (<div className="webBox" ref={this._mainCont} >
<div className={`webBox-container`}
@@ -692,12 +695,12 @@ export class WebBox extends ViewBoxAnnotatableComponent<FieldViewProps, WebDocum
isAnnotationOverlay={true}
select={emptyFunction}
active={this.active}
- ContentScaling={returnOne}
whenActiveChanged={this.whenActiveChanged}
removeDocument={this.removeDocument}
moveDocument={this.moveDocument}
addDocument={this.addDocument}
CollectionView={undefined}
+ ContentScaling={this.scaling}
ScreenToLocalTransform={this.scrollXf}
renderDepth={this.props.renderDepth + 1}>
</CollectionFreeFormView>