From 1c81a9d5b342dd3cc3d8d993f9f7144fd010e157 Mon Sep 17 00:00:00 2001 From: Alex Xu Date: Tue, 15 Apr 2025 15:38:03 -0700 Subject: [PATCH] fix panel view order for no rotate (#897) --- kindlecomicconverter/image.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kindlecomicconverter/image.py b/kindlecomicconverter/image.py index 61846bc..b41aa8b 100755 --- a/kindlecomicconverter/image.py +++ b/kindlecomicconverter/image.py @@ -289,7 +289,8 @@ class ComicPage: self.targetPath = os.path.join(path[0], os.path.splitext(path[1])[0]) + '-kcc' elif 'R' in mode: self.targetPath = os.path.join(path[0], os.path.splitext(path[1])[0]) + '-kcc-a' - self.rotated = True + if not options.norotate: + self.rotated = True elif 'S1' in mode: self.targetPath = os.path.join(path[0], os.path.splitext(path[1])[0]) + '-kcc-b' elif 'S2' in mode: