fix(scroll): fast zoom issue on windows with ctrl

This commit is contained in:
moklick
2023-08-14 16:13:12 +02:00
parent e1b8dce981
commit 9654eee4fb
4 changed files with 28 additions and 8 deletions
+2 -1
View File
@@ -10,7 +10,7 @@ import {
PanZoomInstance,
} from '../types';
import { clamp } from '../utils';
import { getD3Transition, viewportToTransform } from './utils';
import { getD3Transition, viewportToTransform, wheelDelta } from './utils';
import {
createPanOnScrollHandler,
createPanZoomEndHandler,
@@ -65,6 +65,7 @@ export function XYPanZoom({
);
const d3ZoomHandler = d3Selection.on('wheel.zoom')!;
d3ZoomInstance.wheelDelta(wheelDelta);
function setTransform(transform: ZoomTransform, options?: PanZoomTransformOptions) {
if (d3Selection) {