diff --git a/gui/src/aaregui/panels/rotation_data_collection.py b/gui/src/aaregui/panels/rotation_data_collection.py index 5c712bc0..a398044f 100644 --- a/gui/src/aaregui/panels/rotation_data_collection.py +++ b/gui/src/aaregui/panels/rotation_data_collection.py @@ -35,7 +35,7 @@ class RotationDataCollectionPanel(ScanSettingsPanel): self._layout.addWidget(QLabel("Image time", parent=self), 6, 0) self.screening_image_time_enter = NumberLineEdit( - 0.0005, 10.0, 0.005, decimals=4, parent=self + 0.0005, 10.0, 0.01, decimals=4, parent=self ) self._layout.addWidget(self.screening_image_time_enter, 6, 1, 1, 3) self._layout.addWidget(QLabel("s", parent=self), 6, 4) @@ -69,7 +69,7 @@ class RotationDataCollectionPanel(ScanSettingsPanel): self._layout.addWidget(QLabel("Image time", parent=self), 12, 0) self.image_time_enter = NumberLineEdit( - 0.0005, 10.0, 0.005, decimals=4, parent=self + 0.0005, 10.0, 0.01, decimals=4, parent=self ) self._layout.addWidget(self.image_time_enter, 12, 1, 1, 3) self._layout.addWidget(QLabel("s", parent=self), 12, 4)