From 636447bb62a13c5f8f7f8e21229cec7770623900 Mon Sep 17 00:00:00 2001 From: Alex Xu Date: Tue, 4 Nov 2025 13:05:16 -0800 Subject: [PATCH] Partially check W/B Margins if you don't want KCC to extend the image margins in CBZ/PDF (#1152) --- kindlecomicconverter/KCC_gui.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py index 3d1191b..ae57b24 100644 --- a/kindlecomicconverter/KCC_gui.py +++ b/kindlecomicconverter/KCC_gui.py @@ -876,6 +876,8 @@ class KCCGUI(KCC_ui.Ui_mainWindow): GUI.chunkSizeCheckBox.setChecked(False) elif not GUI.webtoonBox.isChecked(): GUI.chunkSizeCheckBox.setEnabled(True) + if GUI.formats[str(GUI.formatBox.currentText())]['format'] in ('CBZ', 'PDF') and not GUI.webtoonBox.isChecked(): + self.addMessage("Partially check W/B Margins if you don't want KCC to extend the image margins.", 'info') def stripTags(self, html): s = HTMLStripper()