From d8b8e18003e6d401fb84b0e0c5c7959e316e8e94 Mon Sep 17 00:00:00 2001 From: Mat Groves Date: Mon, 18 Nov 2024 14:45:33 +0000 Subject: [PATCH] remove includeInBuild (#11069) --- src/events/EventBoundary.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/events/EventBoundary.ts b/src/events/EventBoundary.ts index 4a3f19f9dc..a21f411d2e 100644 --- a/src/events/EventBoundary.ts +++ b/src/events/EventBoundary.ts @@ -548,7 +548,7 @@ export class EventBoundary private _interactivePrune(container: Container): boolean { // If container is a mask, invisible, or not renderable then it cannot be hit directly. - if (!container || !container.visible || !container.renderable || !container.includeInBuild || !container.measurable) + if (!container || !container.visible || !container.renderable || !container.measurable) { return true; }