fix: max Chi should be 30 instead of 40
CI / lint (push) Skipped
CI / test (3.12) (push) Skipped
CI / test (3.13) (push) Skipped
CI / test-with-beamline-plugins (pxi_bec) (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Skipped
CI / lint (pull_request) Successful in 39s
CI / test (3.12) (pull_request) Successful in 58s
CI / test (3.14) (pull_request) Successful in 1m0s
CI / test (3.13) (pull_request) Successful in 1m3s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 1m12s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 1m16s
CI / test-with-coverage (pull_request) Successful in 1m27s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 1m39s
CI / coverage-analysis (pull_request) Failing after 5s

This commit is contained in:
2026-09-04 16:26:01 +02:00
parent 85815278bb
commit 046720ae43
+2 -1
View File
@@ -64,7 +64,8 @@ class SmargonPanel(QWidget):
)
grid_layout.addWidget(QLabel("Chi", parent=self), 1, 0)
self.chi_enter = NumberLineEdit(-0.2, 40, decimals=1, parent=self)
# Vincent says Chi is limited to 0 to 30
self.chi_enter = NumberLineEdit(-0.2, 30, decimals=1, parent=self)
grid_layout.addWidget(self.chi_enter, 1, 1)
grid_layout.addWidget(QLabel("°", parent=self), 1, 2)