From efa831341cc08eedd01740cb8570cac6311bdbf4 Mon Sep 17 00:00:00 2001 From: Alex Xu Date: Tue, 8 Apr 2025 10:28:24 -0700 Subject: [PATCH] disable Kindle Scribe upscale (#893) --- kindlecomicconverter/KCC_gui.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py index f78a066..6279306 100644 --- a/kindlecomicconverter/KCC_gui.py +++ b/kindlecomicconverter/KCC_gui.py @@ -666,7 +666,10 @@ class KCCGUI(KCC_ui.Ui_mainWindow): if not GUI.webtoonBox.isChecked(): GUI.qualityBox.setEnabled(profile['PVOptions']) GUI.upscaleBox.setChecked(profile['DefaultUpscale']) - GUI.mangaBox.setChecked(True) + if profile['Label'] == 'KS': + GUI.upscaleBox.setDisabled(True) + else: + GUI.upscaleBox.setEnabled(True) if not profile['PVOptions']: GUI.qualityBox.setChecked(False) if str(GUI.deviceBox.currentText()) == 'Other':