From 2398a5b1ac15e6e22be66ce262a1f2e386d07e50 Mon Sep 17 00:00:00 2001 From: Alex Xu Date: Tue, 4 Nov 2025 12:40:23 -0800 Subject: [PATCH] raise max res to 6000x8000 (#1150) --- 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 43b2b8f..d0e8d47 100644 --- a/gui/KCC.ui +++ b/gui/KCC.ui @@ -416,7 +416,7 @@ <html><head/><body><p style='white-space:pre'>Resolution of the target device.</p></body></html> - 3200 + 6000 @@ -442,7 +442,7 @@ <html><head/><body><p style='white-space:pre'>Resolution of the target device.</p></body></html> - 5120 + 8000 diff --git a/kindlecomicconverter/KCC_ui.py b/kindlecomicconverter/KCC_ui.py index 5bf5446..b05eab6 100644 --- a/kindlecomicconverter/KCC_ui.py +++ b/kindlecomicconverter/KCC_ui.py @@ -221,7 +221,7 @@ class Ui_mainWindow(object): self.widthBox = QSpinBox(self.customWidget) self.widthBox.setObjectName(u"widthBox") - self.widthBox.setMaximum(3200) + self.widthBox.setMaximum(6000) self.gridLayout_3.addWidget(self.widthBox, 0, 1, 1, 1) @@ -234,7 +234,7 @@ class Ui_mainWindow(object): self.heightBox = QSpinBox(self.customWidget) self.heightBox.setObjectName(u"heightBox") - self.heightBox.setMaximum(5120) + self.heightBox.setMaximum(8000) self.gridLayout_3.addWidget(self.heightBox, 0, 3, 1, 1)