From 57878af36bb0b2df90da0a5291e692db1aa7963a Mon Sep 17 00:00:00 2001 From: X1627315083 <1627315083@qq.com> Date: Thu, 16 Oct 2025 16:30:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=94=BB=E5=B8=83=E8=BF=87?= =?UTF-8?q?=E5=BA=A6=E5=8A=A8=E7=94=BB=E5=AF=BC=E8=87=B4=E7=BA=A2=E7=BB=BF?= =?UTF-8?q?=E5=9B=BE=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CanvasEditor/managers/animation/AnimationManager.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/component/Canvas/CanvasEditor/managers/animation/AnimationManager.js b/src/component/Canvas/CanvasEditor/managers/animation/AnimationManager.js index c9250732..fae2d949 100644 --- a/src/component/Canvas/CanvasEditor/managers/animation/AnimationManager.js +++ b/src/component/Canvas/CanvasEditor/managers/animation/AnimationManager.js @@ -69,7 +69,7 @@ export class AnimationManager { // 如果变化太小,直接应用缩放 if (Math.abs(targetZoom - currentZoom) < 0.01) { - this._applyZoom(point, targetZoom); + // this._applyZoom(point, targetZoom); return; } @@ -121,7 +121,7 @@ export class AnimationManager { this._zoomAnimation = null; // 确保最终状态准确 - this._applyZoom(point, targetZoom, true); + // this._applyZoom(point, targetZoom, true); }, }; @@ -817,7 +817,7 @@ export class AnimationManager { this._wasZooming = false; // 确保最终状态准确 - this._applyZoom(point, targetZoom, true); + // this._applyZoom(point, targetZoom, true); }, }); }