From 4d1608e8c4140c23bc7ad58c1cb18744e433f7de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=A1=97=E8=A7=92=E5=B0=8F=E6=9E=97?= <1013335014@qq.com> Date: Thu, 27 Jun 2024 16:50:25 +0800 Subject: [PATCH] =?UTF-8?q?Fix=EF=BC=9A=E4=BF=AE=E5=A4=8D=E6=8B=96?= =?UTF-8?q?=E5=8A=A8=E5=85=B3=E8=81=94=E7=BA=BF=E7=AB=AF=E7=82=B9=E7=A7=BB?= =?UTF-8?q?=E5=8A=A8=E6=97=B6=E4=BC=9A=E9=80=89=E4=B8=AD=E8=8A=82=E7=82=B9?= =?UTF-8?q?=E6=96=87=E5=AD=97=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/plugins/associativeLine/associativeLineControls.js | 1 + 1 file changed, 1 insertion(+) diff --git a/simple-mind-map/src/plugins/associativeLine/associativeLineControls.js b/simple-mind-map/src/plugins/associativeLine/associativeLineControls.js index ec550100..c1b52756 100644 --- a/simple-mind-map/src/plugins/associativeLine/associativeLineControls.js +++ b/simple-mind-map/src/plugins/associativeLine/associativeLineControls.js @@ -38,6 +38,7 @@ function createOneControlNode(pointKey) { // 控制点的鼠标按下事件 function onControlPointMousedown(e, pointKey) { e.stopPropagation() + e.preventDefault() this.isControlPointMousedown = true this.mousedownControlPointKey = pointKey }