1
0
mirror of https://github.com/ciromattia/kcc synced 2026-07-04 03:55:28 +00:00

reduce job list minimum height from 150 to 110 pixels (#1378)

This commit is contained in:
Alex Xu
2026-07-01 17:34:17 -07:00
committed by GitHub
parent bece5290a3
commit 363a36a764
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1087,7 +1087,7 @@ Ignores most options besides JPEG quality, color mode, output folder.</string>
<property name="minimumSize">
<size>
<width>0</width>
<height>150</height>
<height>110</height>
</size>
</property>
<property name="toolTip">
+1 -1
View File
@@ -553,7 +553,7 @@ class Ui_mainWindow(object):
self.jobList = QListWidget(self.centralWidget)
self.jobList.setObjectName(u"jobList")
self.jobList.setMinimumSize(QSize(0, 150))
self.jobList.setMinimumSize(QSize(0, 110))
self.jobList.setStyleSheet(u"")
self.jobList.setSelectionMode(QAbstractItemView.SelectionMode.NoSelection)
self.jobList.setVerticalScrollMode(QAbstractItemView.ScrollMode.ScrollPerPixel)