diff --git a/kindlecomicconverter/comic2ebook.py b/kindlecomicconverter/comic2ebook.py index c4b00e0..c55e732 100755 --- a/kindlecomicconverter/comic2ebook.py +++ b/kindlecomicconverter/comic2ebook.py @@ -119,6 +119,8 @@ def buildHTML(path, imgfile, imgfilepath): "\n", "\n", "
\n", + # this display none div fixes formatting issues with virtual panel mode, for some reason + '
.
\n', "\n
\n"]) if options.iskindle and options.panelview: @@ -1131,6 +1133,9 @@ def checkOptions(options): if options.profile == 'K1' or options.profile == 'K2' or options.profile == 'K34' or options.profile == 'KDX': options.panelview = False options.hq = False + if options.profile == 'KV' or options.profile in image.ProfileData.ProfilesKindlePDOC.keys(): + options.panelview = False + options.hq = False # Webtoon mode mandatory options if options.webtoon: options.panelview = False