From 5f61f21e15d8310567d54d30efdfe9018ae007b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cmit=20Tun=C3=A7?= Date: Sat, 23 May 2026 11:16:34 +0300 Subject: [PATCH] fix: force crop box visibility on auto-trim activation by calling cropper.crop() --- renderer.js | 1 + 1 file changed, 1 insertion(+) diff --git a/renderer.js b/renderer.js index cfdd03c..27a19b2 100644 --- a/renderer.js +++ b/renderer.js @@ -502,6 +502,7 @@ function autoTrimTransparent() { maxY = Math.min(canvas.height, maxY + pad); // Turn on Crop selection mode visual indicators + cropper.crop(); // Manually draw/show the crop selection box cropper.setDragMode('crop'); elements.ctrlCropDrag.classList.remove('active'); elements.ctrlCropBox.classList.add('active');