From 5dec236a1f90e30cfd79d2b85282cd669ef7008a Mon Sep 17 00:00:00 2001 From: ct Date: Mon, 16 Jun 2025 13:48:59 +0800 Subject: [PATCH] Update --- resources/js/modules/editor/partials/canvas/video-editor.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/js/modules/editor/partials/canvas/video-editor.jsx b/resources/js/modules/editor/partials/canvas/video-editor.jsx index 6f6aefb..5bb81e8 100644 --- a/resources/js/modules/editor/partials/canvas/video-editor.jsx +++ b/resources/js/modules/editor/partials/canvas/video-editor.jsx @@ -225,8 +225,8 @@ const VideoEditor = ({ width, height }) => { } } else { // Meme overlay: Cover behavior but with some padding/sizing - const memeMaxWidth = canvasWidth; // 80% of canvas width - const memeMaxHeight = canvasHeight; // 80% of canvas height + const memeMaxWidth = canvasWidth; // 100% of canvas width + const memeMaxHeight = canvasHeight; // 100% of canvas height const memeAspect = memeMaxWidth / memeMaxHeight; if (imageAspect > memeAspect) {