From 78e05608f8621f868775d0a0ab8372dbd437d585 Mon Sep 17 00:00:00 2001 From: sladro Date: Thu, 25 Dec 2025 17:56:44 +0800 Subject: [PATCH] =?UTF-8?q?xiug=E4=BF=AE=E6=94=B9=E7=BA=BF=E6=9D=A1?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cad/FeatureDrivenDrawer.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Cad/FeatureDrivenDrawer.cs b/Cad/FeatureDrivenDrawer.cs index 1012f36..0314f98 100644 --- a/Cad/FeatureDrivenDrawer.cs +++ b/Cad/FeatureDrivenDrawer.cs @@ -1757,6 +1757,7 @@ namespace CadParamPluging.Cad } } + // User requested Height scale 0.7 (70% of base text height) // Symmetric tolerance: ±Value if (isSymmetrical) { @@ -1767,8 +1768,9 @@ namespace CadParamPluging.Cad // Deviation tolerance: Stacked // AutoCAD MText stack: \H...x;\S...^...; (Caret ^ for tolerance style stacking without bar) - // User requested Height scale 1.0 (from property screenshot) - const double tolScale = 1.0; + // User requested Height scale 0.7 (70% of base text height) + const double tolScale = 0.7; + var plusStr = string.Empty; var minusStr = string.Empty;