diff --git a/src/renderer/renderElement.ts b/src/renderer/renderElement.ts index 2b557cf2b..651854098 100644 --- a/src/renderer/renderElement.ts +++ b/src/renderer/renderElement.ts @@ -239,8 +239,8 @@ const drawElementOnCanvas = ( if (!fillShape && element.customData?.strokeOptions?.hasOutline) { context.lineWidth = - (element.strokeWidth / 5) * - element.customData.strokeOptions.outlineWidth ?? 1; + element.strokeWidth * + (element.customData.strokeOptions.outlineWidth ?? 1); context.strokeStyle = element.strokeColor; context.stroke(path); context.fillStyle = element.backgroundColor;