From a3f2cf5d964a28be764d8a9428a48d02c8c17000 Mon Sep 17 00:00:00 2001 From: cailean Date: Thu, 27 Nov 2025 23:53:47 +0000 Subject: [PATCH] image size adjust --- js/Content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/Content.js b/js/Content.js index 9158e4f..ea934a9 100644 --- a/js/Content.js +++ b/js/Content.js @@ -175,7 +175,7 @@ export class ImageContent extends Content { (texture) => { this.texture = texture; const aspect = texture.image.width / texture.image.height; - const maxWidth = 6; + const maxWidth = 4.5; const height = 4; let width = height * aspect; if (width > maxWidth) {