diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-02-07 01:22:48 -0500 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-02-07 01:22:48 -0500 |
commit | 9f82ece7c763ba4a054d86a715311e0280fcb79f (patch) | |
tree | 26913b3808dbeef1554e5c92b0c84be62ad2ba72 /src/client/views/nodes/CollectionFreeFormDocumentView.tsx | |
parent | 20a8b740cb7083d3b18272f51c823be289406bfb (diff) |
sped up pivot viewer by not recreating docs when pivot changes.
Diffstat (limited to 'src/client/views/nodes/CollectionFreeFormDocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/CollectionFreeFormDocumentView.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/CollectionFreeFormDocumentView.tsx b/src/client/views/nodes/CollectionFreeFormDocumentView.tsx index f484b6115..3bceec45f 100644 --- a/src/client/views/nodes/CollectionFreeFormDocumentView.tsx +++ b/src/client/views/nodes/CollectionFreeFormDocumentView.tsx @@ -88,6 +88,7 @@ export class CollectionFreeFormDocumentView extends DocComponent<CollectionFreeF width: this.width, height: this.height, zIndex: this.ZInd, + display: this.ZInd === -99 ? "none" : undefined, pointerEvents: this.props.Document.isBackground ? "none" : undefined }} > |