From 7f54622532f51e96e0d6e7a8f8a8f14b25045c3e Mon Sep 17 00:00:00 2001 From: ZoeLeeFZ Date: Thu, 29 Oct 2020 15:55:23 +0800 Subject: [PATCH] =?UTF-8?q?!1274=20=E4=BC=98=E5=8C=96:=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E6=9D=BF=E8=BE=B9(=E9=81=BF=E5=85=8D=E7=9B=B4=E6=8E=A5?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=9D=BF=E4=BB=B6=E6=8E=92=E9=92=BB=E5=B1=9E?= =?UTF-8?q?=E6=80=A7)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/UI/Store/RightPanelStore/DrillingStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UI/Store/RightPanelStore/DrillingStore.ts b/src/UI/Store/RightPanelStore/DrillingStore.ts index bfa74e587..dfc95d591 100644 --- a/src/UI/Store/RightPanelStore/DrillingStore.ts +++ b/src/UI/Store/RightPanelStore/DrillingStore.ts @@ -94,7 +94,7 @@ export class DrillingStore extends BoardEdgesEditor if (typeSet.size > 1) boardData.drillType = DrillType.More; else - boardData.drillType = data[0]; + boardData.drillType = data[0] !== DrillType.None ? data[0] : boardData.drillType; } this._highDrillMap = new WeakMap(); }, "排钻属性编辑");