From 38ba7dcafb824f9b196dfc299a6b85d5fe5ae7b2 Mon Sep 17 00:00:00 2001 From: Arnaud_Cayrol Date: Sun, 15 Feb 2026 21:38:57 +0100 Subject: [PATCH] Enable padding setting by default --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index d28e3c1..de37e32 100644 --- a/src/config.rs +++ b/src/config.rs @@ -218,7 +218,7 @@ pub struct CropConfig { impl Default for CropConfig { fn default() -> Self { Self { - enabled: false, + enabled: true, max_padding_percent: 30.0, } }