修复签名画笔宽度

This commit is contained in:
xianyi
2025-11-27 17:36:37 +08:00
parent 61adf09dc8
commit 5c691727eb

View File

@@ -282,7 +282,7 @@ const UI7: React.FC = () => {
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.restore();
ctx.strokeStyle = "#000000";
ctx.lineWidth = 2;
ctx.lineWidth = 10;
ctx.lineCap = "round";
ctx.lineJoin = "round";
}, []);