Increase jog filter to 24px to catch edge/33 19px S-curve

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
master
2026-04-02 15:44:08 +03:00
parent fa9139a5ed
commit 407a00f409

View File

@@ -2049,7 +2049,7 @@ public sealed class WorkflowRenderSvgRenderer
var dxIn = Math.Abs(curr.X - prev.X);
var dyIn = Math.Abs(curr.Y - prev.Y);
var segLen = dxIn + dyIn;
if (segLen < 12d && i < mutablePoints.Count - 1)
if (segLen < 24d && i < mutablePoints.Count - 1)
{
var next = mutablePoints[i + 1];
if (dxIn < dyIn)