From a795a84899151326b343f9729370f4a3181b0f55 Mon Sep 17 00:00:00 2001 From: Alex Xu Date: Tue, 14 Oct 2025 14:24:53 -0700 Subject: [PATCH] raise maximum dimensions from 2400x3840 tp 3200x5120 (#1114) --- gui/KCC.ui | 4 ++-- kindlecomicconverter/KCC_ui.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gui/KCC.ui b/gui/KCC.ui index b2b1c35..7af91e3 100644 --- a/gui/KCC.ui +++ b/gui/KCC.ui @@ -344,7 +344,7 @@ <html><head/><body><p style='white-space:pre'>Resolution of the target device.</p></body></html> - 2400 + 3200 @@ -370,7 +370,7 @@ <html><head/><body><p style='white-space:pre'>Resolution of the target device.</p></body></html> - 3840 + 5120 diff --git a/kindlecomicconverter/KCC_ui.py b/kindlecomicconverter/KCC_ui.py index 1eb8c92..cb26aae 100644 --- a/kindlecomicconverter/KCC_ui.py +++ b/kindlecomicconverter/KCC_ui.py @@ -190,7 +190,7 @@ class Ui_mainWindow(object): self.widthBox = QSpinBox(self.customWidget) self.widthBox.setObjectName(u"widthBox") - self.widthBox.setMaximum(2400) + self.widthBox.setMaximum(3200) self.gridLayout_3.addWidget(self.widthBox, 0, 1, 1, 1) @@ -203,7 +203,7 @@ class Ui_mainWindow(object): self.heightBox = QSpinBox(self.customWidget) self.heightBox.setObjectName(u"heightBox") - self.heightBox.setMaximum(3840) + self.heightBox.setMaximum(5120) self.gridLayout_3.addWidget(self.heightBox, 0, 3, 1, 1)