diff options
author | Paweł Jastrzębski <pawelj@iosphe.re> | 2017-07-15 12:00:19 +0200 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@iosphe.re> | 2017-07-15 12:00:19 +0200 |
commit | 67de77538cc0c317a0fc3d1ce628ed829f2bd9e1 (patch) | |
tree | 992f423bac15249db090d5af7f3e0fe5c706d3cf | |
parent | Updated README + version bump (diff) | |
download | kcc-67de77538cc0c317a0fc3d1ce628ed829f2bd9e1.tar.gz kcc-67de77538cc0c317a0fc3d1ce628ed829f2bd9e1.tar.bz2 kcc-67de77538cc0c317a0fc3d1ce628ed829f2bd9e1.zip |
Disable Panel View for Kindle Keyboard (#238)
-rw-r--r-- | kindlecomicconverter/KCC_gui.py | 2 | ||||
-rwxr-xr-x | kindlecomicconverter/comic2ebook.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py index 5a3b538..bd47eb0 100644 --- a/kindlecomicconverter/KCC_gui.py +++ b/kindlecomicconverter/KCC_gui.py @@ -950,7 +950,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': True, 'ForceExpert': False, 'DefaultFormat': 0, + "Kindle 3": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 0, 'DefaultUpscale': False, 'Label': 'K3'}, } profilesGUI = [ diff --git a/kindlecomicconverter/comic2ebook.py b/kindlecomicconverter/comic2ebook.py index 1bffcc4..b7487b8 100755 --- a/kindlecomicconverter/comic2ebook.py +++ b/kindlecomicconverter/comic2ebook.py @@ -967,7 +967,7 @@ def checkOptions(): if options.format == 'MOBI' and options.batchsplit != 2: options.batchsplit = 1 # Older Kindle models don't support Panel View. - if options.profile == 'K1' or options.profile == 'K2' or options.profile == 'KDX': + if options.profile == 'K1' or options.profile == 'K2' or options.profile == 'K3' or options.profile == 'KDX': options.panelview = False options.hq = False # Webtoon mode mandatory options |