Skip to content

Commit

Permalink
Merge pull request #559
Browse files Browse the repository at this point in the history
* make scribe default to no upscale with manga mode
  • Loading branch information
axu2 authored Aug 5, 2023
1 parent 217f571 commit 154707a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kindlecomicconverter/KCC_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,7 @@ def changeDevice(self):
if not GUI.webtoonBox.isChecked():
GUI.qualityBox.setEnabled(profile['PVOptions'])
GUI.upscaleBox.setChecked(profile['DefaultUpscale'])
GUI.mangaBox.setChecked(True)
if not profile['PVOptions']:
GUI.qualityBox.setChecked(False)
if str(GUI.deviceBox.currentText()) == 'Other':
Expand Down Expand Up @@ -931,7 +932,7 @@ def __init__(self, kccapp, kccwindow):
"Kindle Voyage": {'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0,
'DefaultUpscale': True, 'Label': 'KV'},
"Kindle Scribe": {
'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, 'DefaultUpscale': True, 'Label': 'KS',
'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, 'DefaultUpscale': False, 'Label': 'KS',
},
"Kindle 11": {
'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, 'DefaultUpscale': True, 'Label': 'K11',
Expand Down

0 comments on commit 154707a

Please sign in to comment.