diff options
| author | bobzel <zzzman@gmail.com> | 2021-09-03 03:58:21 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-09-03 03:58:21 -0400 |
| commit | 80baae4dcf49f818dca4dbfe340013e0e9d197bb (patch) | |
| tree | 960910dbd8e523d41885c4674a7f5fdadaba98dc /src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | |
| parent | 5c6946fd211f6b0ee5d860ade968f4353344974d (diff) | |
fixed drawing of link lines - doesn't generate duplicates, and works with text regions, scroll locations, and document anchors.
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx index dd1f3e707..2deaea823 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -1052,7 +1052,7 @@ export class CollectionFreeFormView extends CollectionSubView<PanZoomDocument, P freezeDimensions={this.props.childFreezeDimensions} dropAction={StrCast(this.props.Document.childDropAction) as dropActionType} bringToFront={this.bringToFront} - dontRegisterView={this.props.dontRegisterView} + dontRegisterView={this.props.dontRenderDocuments || this.props.dontRegisterView} pointerEvents={this.backgroundActive || this.props.childPointerEvents ? "all" : (this.props.viewDefDivClick || (engine === "pass" && !this.props.isSelected(true))) ? "none" : undefined} jitterRotation={this.props.styleProvider?.(childLayout, this.props, StyleProp.JitterRotation) || 0} |
