diff options
author | bobzel <zzzman@gmail.com> | 2020-12-14 18:46:22 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-12-14 18:46:22 -0500 |
commit | 5f999d6fa4dcc8a8994a4c97f7ce6e0d66d67411 (patch) | |
tree | dda9e29669869ad47c521ec47073dd7a14a4ab35 /src/client/views/nodes/formattedText/FormattedTextBox.tsx | |
parent | 1304bd7306ff9075455282624cb2385c5aeaf0fb (diff) |
renamed ContentFittingDocumentView as DocumentView. Renamed DocmentView as DocumentViewInternal
Diffstat (limited to 'src/client/views/nodes/formattedText/FormattedTextBox.tsx')
-rw-r--r-- | src/client/views/nodes/formattedText/FormattedTextBox.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/nodes/formattedText/FormattedTextBox.tsx b/src/client/views/nodes/formattedText/FormattedTextBox.tsx index 584674a02..bf0832211 100644 --- a/src/client/views/nodes/formattedText/FormattedTextBox.tsx +++ b/src/client/views/nodes/formattedText/FormattedTextBox.tsx @@ -581,7 +581,8 @@ export class FormattedTextBox extends ViewBoxAnnotatableComponent<(FieldViewProp @undoBatch @action toggleNativeDimensions = () => { - Doc.toggleNativeDimensions(this.layoutDoc, 1, this.props.NativeWidth?.() || 0, this.props.NativeHeight?.() || 0); + alert("need to fix"); + // Doc.toggleNativeDimensions(this.layoutDoc, 1, this.props.NativeWidth?.() || 0, this.props.NativeHeight?.() || 0); } public static get DefaultLayout(): Doc | string | undefined { |