From 61bb5da5283338eafd022d06c47e500257042480 Mon Sep 17 00:00:00 2001 From: peterkogo Date: Tue, 26 Aug 2025 16:52:38 +0200 Subject: [PATCH] allow wheel events when connection is being made --- packages/system/src/xypanzoom/filter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/system/src/xypanzoom/filter.ts b/packages/system/src/xypanzoom/filter.ts index 8446f20c..70375f4c 100644 --- a/packages/system/src/xypanzoom/filter.ts +++ b/packages/system/src/xypanzoom/filter.ts @@ -51,7 +51,7 @@ export function createFilter({ } // we want to disable pinch-zooming while making a connection - if (connectionInProgress) { + if (connectionInProgress && !(event.type === 'wheel')) { return false; }