diff options
author | bobzel <zzzman@gmail.com> | 2025-01-06 15:16:28 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-01-06 15:16:28 -0500 |
commit | 6f8bb6d69d9e671aa6dc4b076f913a63fa73f9f2 (patch) | |
tree | 6306149b01c86b9fd4ce4390811c188aa9f79daf /src/client/views/nodes/WebBox.tsx | |
parent | 5ceec2a31975ddc2a1251cf3590af34db76c5e73 (diff) |
pdf fixes for latest version of PDFjs.
Diffstat (limited to 'src/client/views/nodes/WebBox.tsx')
-rw-r--r-- | src/client/views/nodes/WebBox.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client/views/nodes/WebBox.tsx b/src/client/views/nodes/WebBox.tsx index 9ba4f8ead..ffeb574e9 100644 --- a/src/client/views/nodes/WebBox.tsx +++ b/src/client/views/nodes/WebBox.tsx @@ -202,8 +202,9 @@ export class WebBox extends ViewBoxAnnotatableComponent<FieldViewProps>() { () => this.layoutDoc._layout_autoHeight, layoutAutoHeight => { if (layoutAutoHeight) { - this.layoutDoc._nativeHeight = NumCast(this.Document[this._props.fieldKey + '_nativeHeight']); - this._props.setHeight?.(NumCast(this.Document[this._props.fieldKey + '_nativeHeight']) * (this._props.NativeDimScaling?.() || 1)); + const nh = NumCast(this.Document[this._props.fieldKey + '_nativeHeight'], NumCast(this.Document.nativeHeight)); + this.layoutDoc._nativeHeight = nh; + this._props.setHeight?.(nh * (this._props.NativeDimScaling?.() || 1)); } } ); |