Skip to content

Commit

Permalink
increased max limits for fps and skips in gui
Browse files Browse the repository at this point in the history
  • Loading branch information
magnus-haw committed May 10, 2024
1 parent 1f759b9 commit 249c9b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arcjetCV/gui/arcjetCV_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ def setupUi(self, MainWindow):
)
self.spinBox_frame_skips = QtWidgets.QSpinBox(self.groupBox)
self.spinBox_frame_skips.setMinimum(1)
self.spinBox_frame_skips.setMaximum(200)
self.spinBox_frame_skips.setMaximum(500)
self.spinBox_frame_skips.setProperty("value", 5)
self.spinBox_frame_skips.setObjectName("spinBox_frame_skips")
self.formLayout_5.setWidget(
Expand Down Expand Up @@ -586,7 +586,7 @@ def setupUi(self, MainWindow):
)
self.doubleSpinBox_fps = QtWidgets.QDoubleSpinBox(self.tab_5)
self.doubleSpinBox_fps.setMinimum(1.0)
self.doubleSpinBox_fps.setMaximum(120.0)
self.doubleSpinBox_fps.setMaximum(12000.0)
self.doubleSpinBox_fps.setProperty("value", 30.0)
self.doubleSpinBox_fps.setObjectName("doubleSpinBox_fps")
self.formLayout_3.setWidget(
Expand Down

0 comments on commit 249c9b4

Please sign in to comment.