diff options
author | Paweł Jastrzębski <pawelj@iosphe.re> | 2017-02-01 17:32:48 +0100 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@iosphe.re> | 2017-02-01 17:32:48 +0100 |
commit | 495db88a9e91d656908df84b2140846c1a9758ab (patch) | |
tree | dccf7d2aaf660e9b797f18694f817ad9742ffbc3 /kindlecomicconverter/comic2ebook.py | |
parent | Re-enabled OS X file association mechanism (diff) | |
download | kcc-495db88a9e91d656908df84b2140846c1a9758ab.tar.gz kcc-495db88a9e91d656908df84b2140846c1a9758ab.tar.bz2 kcc-495db88a9e91d656908df84b2140846c1a9758ab.zip |
Re-enabled Panel View support for Kindle Keyboard
Diffstat (limited to 'kindlecomicconverter/comic2ebook.py')
-rwxr-xr-x | kindlecomicconverter/comic2ebook.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kindlecomicconverter/comic2ebook.py b/kindlecomicconverter/comic2ebook.py index e5bcc89..9580dab 100755 --- a/kindlecomicconverter/comic2ebook.py +++ b/kindlecomicconverter/comic2ebook.py @@ -943,8 +943,8 @@ def checkOptions(): # Splitting MOBI is not optional if options.format == 'MOBI' and options.batchsplit != 2: options.batchsplit = 1 - # Older Kindle don't need higher resolution files due lack of Panel View. - if options.profile == 'K1' or options.profile == 'K2' or options.profile == 'K3' or options.profile == 'KDX': + # Older Kindle models don't support Panel View. + if options.profile == 'K1' or options.profile == 'K2' or options.profile == 'KDX': options.panelview = False # Webtoon mode mandatory options if options.webtoon: |