diff options
author | bobzel <zzzman@gmail.com> | 2021-03-16 00:19:55 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-16 00:19:55 -0400 |
commit | c27d8d20b44ba2fb8b0ddb2ef077ce155df7fa84 (patch) | |
tree | 1de94a28a3df4e6bcce65399aa37cc1eb21a20b6 /src/client/views/nodes/PDFBox.tsx | |
parent | ecaf1da499b41d0f873c64cb128118a6a291229e (diff) |
fixed warnings
Diffstat (limited to 'src/client/views/nodes/PDFBox.tsx')
-rw-r--r-- | src/client/views/nodes/PDFBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/PDFBox.tsx b/src/client/views/nodes/PDFBox.tsx index e4aa639ff..0dbe0c917 100644 --- a/src/client/views/nodes/PDFBox.tsx +++ b/src/client/views/nodes/PDFBox.tsx @@ -231,7 +231,7 @@ export class PDFBox extends ViewBoxAnnotatableComponent<FieldViewProps, PdfDocum } else { this.layoutDoc.nativeWidth = NumCast(this.layoutDoc[this.fieldKey + "-nativeWidth"]); } - this.layoutDoc._width = NumCast(this.layoutDoc._nativeWidth) * (NumCast(this.layoutDoc[this.fieldKey + "-nativeWidth"]) / NumCast(this.layoutDoc[this.fieldKey + "-nativeHeight"])) + this.layoutDoc._width = NumCast(this.layoutDoc._nativeWidth) * (NumCast(this.layoutDoc[this.fieldKey + "-nativeWidth"]) / NumCast(this.layoutDoc[this.fieldKey + "-nativeHeight"])); } settingsPanel() { const pageBtns = <> |