1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 01:36:27 +00:00

raise maximum dimensions from 2400x3840 tp 3200x5120 (#1114)

This commit is contained in:
Alex Xu
2025-10-14 14:24:53 -07:00
committed by GitHub
parent ef44f6f285
commit a795a84899
2 changed files with 4 additions and 4 deletions

View File

@@ -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)