allow wheel events when connection is being made

This commit is contained in:
peterkogo
2025-08-26 16:52:38 +02:00
parent f869808e3d
commit 61bb5da528

View File

@@ -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;
}