aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-10-24 13:57:59 -0400
committerbobzel <zzzman@gmail.com>2023-10-24 13:57:59 -0400
commit6d60f2835502cb58d680aeeda8ce022f73ddcfa6 (patch)
tree8d1f71a577aa76c53f7ee1676f8b3eeeb390830c /src
parenta91d5f3bdf1daf9b10a3f02acc79db7a0174a1d8 (diff)
adjustment to group pointer events for ink.
Diffstat (limited to 'src')
-rw-r--r--src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx2
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;