diff --git a/svelte-app/src/lib/canvas/renderer.ts b/svelte-app/src/lib/canvas/renderer.ts index 5802342..4989ee5 100644 --- a/svelte-app/src/lib/canvas/renderer.ts +++ b/svelte-app/src/lib/canvas/renderer.ts @@ -556,11 +556,11 @@ function drawConveyanceLabel(ctx: CanvasRenderingContext2D, sym: PlacedSymbol) { let cx: number, cy: number, availW: number, availH: number; if (isSpurType(sym.symbolId)) { const w2 = sym.w2 ?? sym.w; - // Place text at the wide end corner of the trapezoid + // Place text at the wide end corner — no horizontal padding needed cx = sym.x + sym.w / 2; cy = sym.y + sym.h / 2; - availW = sym.w - pad * 2; - availH = sym.h - pad * 2; + availW = sym.w; + availH = sym.h; } else { cx = sym.x + sym.w / 2; cy = sym.y + sym.h / 2;