1
0
mirror of https://github.com/ciromattia/kcc synced 2026-01-13 16:59:42 +00:00

Merge pull request #499 from darodi/disable_panel_view_kindle_scribe

Disable Panel View for kindle scribe
This commit is contained in:
darodi
2023-04-06 17:21:31 +00:00
committed by GitHub

View File

@@ -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