From 5e9e52e4330f1622da55a293d07fcc1ab883c409 Mon Sep 17 00:00:00 2001 From: Anton Lavrevov Date: Tue, 21 Oct 2025 16:40:19 -0500 Subject: [PATCH] remove log --- src/shapes/TextPath.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/shapes/TextPath.ts b/src/shapes/TextPath.ts index e279aa74..a7e8a788 100644 --- a/src/shapes/TextPath.ts +++ b/src/shapes/TextPath.ts @@ -170,8 +170,6 @@ export class TextPath extends Shape { if (i === 0) { context.moveTo(0, fontSize / 2 + 1); } - - console.log('underline log'); context.lineTo(glyphInfo[i].width, fontSize / 2 + 1); } context.restore(); @@ -188,7 +186,6 @@ export class TextPath extends Shape { if (hasUnderline) { context.strokeStyle = fill; context.lineWidth = fontSize / 20; - console.log('underline log'); context.stroke(); }