This commit is contained in:
TreehouseNorris 2022-12-08 11:55:24 -05:00
parent 0896c5f261
commit 2f567d4970

View File

@ -624,7 +624,10 @@ export class CanvasRenderer extends Renderer {
ctx.fillStyle = gradient; ctx.fillStyle = gradient;
ctx.fillRect(0, 0, width, height); ctx.fillRect(0, 0, width, height);
if (width > 0 && height > 0) { if (width > 0 && height > 0) {
const pattern = this.ctx.createPattern(canvas, repeatTypes[+container.styles.backgroundRepeat]) as CanvasPattern; const pattern = this.ctx.createPattern(
canvas,
repeatTypes[+container.styles.backgroundRepeat]
) as CanvasPattern;
this.renderRepeat(path, pattern, x, y); this.renderRepeat(path, pattern, x, y);
} }
} else if (isRadialGradient(backgroundImage)) { } else if (isRadialGradient(backgroundImage)) {