diff options
author | bobzel <zzzman@gmail.com> | 2020-08-05 22:50:38 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-05 22:50:38 -0400 |
commit | 4bd5443171f028790ca1172a7bb60faa0355070f (patch) | |
tree | 02737950ff98da031594e2fe605ffeacfeea4dc1 /src | |
parent | b6e1141aa6dd7757fdfc221579e2bf577d4bb9bc (diff) |
readded Z test for applying layoutTempaltes in FreeFormView
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx index 7f325182c..ffeb3024d 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -956,8 +956,8 @@ export class CollectionFreeFormView extends CollectionSubView<PanZoomDocument, P DataDoc: childData, Document: childLayout, LibraryPath: this.libraryPath, - LayoutTemplate: this.props.ChildLayoutTemplate, - LayoutTemplateString: this.props.ChildLayoutString, + LayoutTemplate: childLayout.z ? undefined : this.props.ChildLayoutTemplate, + LayoutTemplateString: childLayout.z ? undefined : this.props.ChildLayoutString, FreezeDimensions: this.props.freezeChildDimensions, layoutKey: undefined, setupDragLines: this.setupDragLines, |