From a2c81cf6401838a8ddb8673e640f6932f5dc39a3 Mon Sep 17 00:00:00 2001 From: C85297 <95289555+C85297@users.noreply.github.com> Date: Fri, 6 Feb 2026 12:09:33 +0000 Subject: [PATCH] Fix blit parameter --- src/core/operations/ContainImage.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/operations/ContainImage.mjs b/src/core/operations/ContainImage.mjs index 02148a4a..0f39c817 100644 --- a/src/core/operations/ContainImage.mjs +++ b/src/core/operations/ContainImage.mjs @@ -132,7 +132,7 @@ class ContainImage extends Operation { color: 0x000000ff, }); image = newImage.blit({ - image, + src: image, x: 0, y: 0, });