fix:灵敏度阈值范围过小导致的调节无效

This commit is contained in:
2025-06-19 15:12:40 +08:00
parent 316d568cbc
commit 02dfbb54b6
7 changed files with 141 additions and 50 deletions
+1 -1
View File
@@ -410,7 +410,7 @@ namespace Ink_Canvas
[JsonProperty("isInkToShapeRounded")]
public bool IsInkToShapeRounded { get; set; } = true;
[JsonProperty("lineStraightenSensitivity")]
public double LineStraightenSensitivity { get; set; } = 0.10; // 直线检测灵敏度,值越小越严格(0.05-0.75
public double LineStraightenSensitivity { get; set; } = 0.20; // 直线检测灵敏度,值越小越严格(0.05-2.0
}
public class RandSettings {