diff options
author | bobzel <zzzman@gmail.com> | 2023-10-24 13:57:59 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-10-24 13:57:59 -0400 |
commit | 6d60f2835502cb58d680aeeda8ce022f73ddcfa6 (patch) | |
tree | 8d1f71a577aa76c53f7ee1676f8b3eeeb390830c | |
parent | a91d5f3bdf1daf9b10a3f02acc79db7a0174a1d8 (diff) |
adjustment to group pointer events for ink.
-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 7fa22804d..5f7dda562 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -1300,7 +1300,7 @@ export class CollectionFreeFormView extends CollectionSubView<Partial<collection } childPointerEventsFunc = () => this.childPointerEvents; childContentsActive = () => (this.props.childContentsActive ?? this.isContentActive() === false ? returnFalse : emptyFunction)(); - groupChildPointerEvents = () => (this.props.isDocumentActive?.() ? 'all' : 'none'); + groupChildPointerEvents = () => (this.props.isDocumentActive?.() && !this.isContentActive() ? 'all' : 'none'); getChildDocView(entry: PoolData) { const childLayout = entry.pair.layout; const childData = entry.pair.data; |