diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-01-28 19:58:26 -0500 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-01-28 19:58:26 -0500 |
commit | 2c9b61d0166d825e062f7c16f9344fd5f23aa3ed (patch) | |
tree | f7c875f7ceb28daf2114d8865fe948d49a418ee9 /src/client/views/nodes/ContentFittingDocumentView.tsx | |
parent | 7f27720aa9b3dd691b95635ea8b345a5a14a417f (diff) |
minor cleanup so that layout strings are all stored in layout_<name> fields
Diffstat (limited to 'src/client/views/nodes/ContentFittingDocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/ContentFittingDocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/ContentFittingDocumentView.tsx b/src/client/views/nodes/ContentFittingDocumentView.tsx index fa571426d..51c8e00da 100644 --- a/src/client/views/nodes/ContentFittingDocumentView.tsx +++ b/src/client/views/nodes/ContentFittingDocumentView.tsx @@ -61,7 +61,7 @@ export class ContentFittingDocumentView extends React.Component<ContentFittingDo this.props.childDocs && this.props.childDocs.map(otherdoc => { const target = Doc.GetProto(otherdoc); target.layout = ComputedField.MakeFunction("this.image_data[0]"); - target.layoutCustom = Doc.MakeDelegate(docDragData.draggedDocuments[0]); + target.layout_custom = Doc.MakeDelegate(docDragData.draggedDocuments[0]); }); e.stopPropagation(); } |