From 60b79da936ae50a9af18d151e90add97d8c4c5de Mon Sep 17 00:00:00 2001 From: Jason Miller Date: Wed, 9 Dec 2020 11:58:10 -0500 Subject: [PATCH] Keep resize enabled when cropping --- src/client/lazy-app/Compress/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/client/lazy-app/Compress/index.tsx b/src/client/lazy-app/Compress/index.tsx index cb852f5b..ab6564ed 100644 --- a/src/client/lazy-app/Compress/index.tsx +++ b/src/client/lazy-app/Compress/index.tsx @@ -465,7 +465,6 @@ export default class Compress extends Component { if (cropChanged) { const img = state.source?.decoded; resizeSettings = { - enabled: false, width: img ? img.width - crop.left - crop.right : undefined, height: img ? img.height - crop.top - crop.bottom : undefined, };