Update renderElement.ts

This commit is contained in:
zsviczian 2022-11-20 20:46:50 +01:00 committed by GitHub
parent 12c1d6cd09
commit e82918f1c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -217,7 +217,7 @@ const drawElementOnCanvas = (
}
case "freedraw": {
// Draw directly to canvas
//context.save();
context.save();
context.fillStyle = element.strokeColor;
const path = getFreeDrawPath2D(element) as Path2D;
@ -226,11 +226,12 @@ const drawElementOnCanvas = (
if (fillShape) {
rc.draw(fillShape);
}
context.beginPath();
context.fillStyle = element.strokeColor;
context.fill(path);
//context.restore();
context.restore();
break;
}
case "image": {