diff options
| author | bobzel <zzzman@gmail.com> | 2021-03-19 10:35:57 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-03-19 10:35:57 -0400 |
| commit | e8ef90478cec13d45de0fe42e32a594e2630c47d (patch) | |
| tree | 1b5cf8c16e94705bf9d9faa589e2e896dd97feef /src/client/views/collections/collectionFreeForm | |
| parent | e2bc768ebde4ff78cee6e2a892f6a37e1d7e6abb (diff) | |
fixing up some baseProto initialization. fixing stacking view with hidden docs.
Diffstat (limited to 'src/client/views/collections/collectionFreeForm')
| -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 c82baf691..f0d99611a 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -1239,7 +1239,7 @@ export class CollectionFreeFormView extends CollectionSubView<PanZoomDocument, P if ((e as any).handlePan || this.props.isAnnotationOverlay) return; (e as any).handlePan = true; - if (!this.props.Document._noAutoscroll && !this.props.renderDepth && this._marqueeRef?.current) { + if (!this.layoutDoc._noAutoscroll && !this.props.renderDepth && this._marqueeRef?.current) { const dragX = e.detail.clientX; const dragY = e.detail.clientY; const bounds = this._marqueeRef.current?.getBoundingClientRect(); |
