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;