Skip to content

Commit

Permalink
Increase upper limit of maximum images and number of threads.
Browse files Browse the repository at this point in the history
  • Loading branch information
sczhengyabin committed Dec 5, 2016
1 parent 8540ea2 commit a221d60
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions mainwindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ per keywords</string>
<number>1</number>
</property>
<property name="maximum">
<number>500</number>
<number>2000</number>
</property>
<property name="value">
<number>100</number>
Expand Down Expand Up @@ -672,7 +672,7 @@ per keywords</string>
<number>1</number>
</property>
<property name="maximum">
<number>100</number>
<number>200</number>
</property>
<property name="value">
<number>50</number>
Expand Down
4 changes: 2 additions & 2 deletions ui_mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ def setupUi(self, MainWindow):
font.setPointSize(12)
self.spinBox_max_number.setFont(font)
self.spinBox_max_number.setMinimum(1)
self.spinBox_max_number.setMaximum(500)
self.spinBox_max_number.setMaximum(2000)
self.spinBox_max_number.setProperty("value", 100)
self.spinBox_max_number.setObjectName(_fromUtf8("spinBox_max_number"))
self.horizontalLayout_4.addWidget(self.spinBox_max_number)
Expand All @@ -375,7 +375,7 @@ def setupUi(self, MainWindow):
font.setPointSize(12)
self.spinBox_num_threads.setFont(font)
self.spinBox_num_threads.setMinimum(1)
self.spinBox_num_threads.setMaximum(100)
self.spinBox_num_threads.setMaximum(200)
self.spinBox_num_threads.setProperty("value", 50)
self.spinBox_num_threads.setObjectName(_fromUtf8("spinBox_num_threads"))
self.horizontalLayout_4.addWidget(self.spinBox_num_threads)
Expand Down

0 comments on commit a221d60

Please sign in to comment.