From 9bc1f92c8c48023c7d9fa52ae3021d9726ed47e7 Mon Sep 17 00:00:00 2001 From: darodi <4682830+darodi@users.noreply.github.com> Date: Mon, 27 Mar 2023 23:18:13 +0200 Subject: [PATCH] Disable Panel View for kindle scribe --- kindlecomicconverter/comic2ebook.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kindlecomicconverter/comic2ebook.py b/kindlecomicconverter/comic2ebook.py index 2b25596..97a994f 100755 --- a/kindlecomicconverter/comic2ebook.py +++ b/kindlecomicconverter/comic2ebook.py @@ -1054,6 +1054,9 @@ def checkOptions(options): # Splitting MOBI is not optional if (options.format == 'MOBI' or options.format == 'KFX') and options.batchsplit != 2: options.batchsplit = 1 + # Disable Panel View for kindle scribe. + if options.profile == 'KS': + options.panelview = False # Older Kindle models don't support Panel View. if options.profile == 'K1' or options.profile == 'K2' or options.profile == 'K34' or options.profile == 'KDX': options.panelview = False