From 544e866b51c21ec415381a919895b22322661ad2 Mon Sep 17 00:00:00 2001 From: sa-mi <65340912+sa-mi@users.noreply.github.com> Date: Wed, 1 Jul 2026 21:30:08 -0700 Subject: [PATCH] fix crash in smart cover crop for landscape covers (#1379) --- kindlecomicconverter/image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kindlecomicconverter/image.py b/kindlecomicconverter/image.py index 60178c0..bd680e4 100755 --- a/kindlecomicconverter/image.py +++ b/kindlecomicconverter/image.py @@ -648,7 +648,7 @@ class Cover: if self.options.righttoleft: self.image = self.image.crop((w * .36, 0, w, h)) else: - self.image = self.image.crop((w, 0, .64 * w, h)) + self.image = self.image.crop((0, 0, .64 * w, h)) def save_to_folder(self, target, tomeid, len_tomes=0): try: