diff options
| author | Paweł Jastrzębski <[email protected]> | 2017-02-01 17:32:48 +0100 |
|---|---|---|
| committer | Paweł Jastrzębski <[email protected]> | 2017-02-01 17:32:48 +0100 |
| commit | 495db88a9e91d656908df84b2140846c1a9758ab (patch) | |
| tree | dccf7d2aaf660e9b797f18694f817ad9742ffbc3 | |
| 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
| -rw-r--r-- | kindlecomicconverter/KCC_gui.py | 2 | ||||
| -rwxr-xr-x | kindlecomicconverter/comic2ebook.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py index ca3d73f..63f004c 100644 --- a/kindlecomicconverter/KCC_gui.py +++ b/kindlecomicconverter/KCC_gui.py @@ -934,7 +934,7 @@ class KCCGUI(KCC_ui.Ui_mainWindow): 'DefaultUpscale': False, 'Label': 'K1'}, "Kindle 2": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 0, 'DefaultUpscale': False, 'Label': 'K2'}, - "Kindle 3": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 0, + "Kindle 3": {'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, 'DefaultUpscale': False, 'Label': 'K3'}, } profilesGUI = [ 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: |