From 5c2c1a66b231c058a87ab2a7e33b6a2477d4618d Mon Sep 17 00:00:00 2001 From: ChenX Date: Wed, 8 May 2024 18:11:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BC=80=E5=8F=91:=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Add-on/DrawDrilling/DrawDrillingTool.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Add-on/DrawDrilling/DrawDrillingTool.ts b/src/Add-on/DrawDrilling/DrawDrillingTool.ts index 60c0984a0..e6b61786e 100644 --- a/src/Add-on/DrawDrilling/DrawDrillingTool.ts +++ b/src/Add-on/DrawDrilling/DrawDrillingTool.ts @@ -1330,8 +1330,8 @@ export class DrawDrillingTool extends Singleton let suitableOptions = this.GetRuleByFace(f); if (suitableOptions.length === 0) { - app.Editor.Prompt("碰撞面长度" + FixedNotZero(f.Length, 1) + "没有合适的规则,或者当前配置不存在" + f.DrillType + "类型排钻", LogType.Error, [f.LocalBoard, f.InterBoard].filter(e => e)); - app.Editor.Prompt("长度" + FixedNotZero(f.Length, 1) + "没有合适的规则,或者当前配置不存在" + f.DrillType + "类型排钻", LogType.Error); + app.Editor.Prompt("碰撞面长度:(" + FixedNotZero(f.Length, 1) + ")没有合适的规则,或者当前配置不存在<" + f.DrillType + ">类型排钻", LogType.Error, [f.LocalBoard, f.InterBoard].filter(e => e)); + app.Editor.Prompt("长度:(" + FixedNotZero(f.Length, 1) + ")没有合适的规则,或者当前配置不存在<" + f.DrillType + ">类型排钻", LogType.Error); return; } for (let suitableOption of suitableOptions)