mirror of
https://github.com/Athemis/PyDSF.git
synced 2025-04-05 14:46:03 +00:00
Fix setting color range
We need the value of the two SpinBoxes...
This commit is contained in:
parent
e73a646e48
commit
9e7fdae9bf
1 changed files with 2 additions and 2 deletions
|
@ -45,8 +45,8 @@ class Worker(QRunnable):
|
|||
c_lower = self.owner.doubleSpinBox_lower.value()
|
||||
c_upper = self.owner.doubleSpinBox_upper.value()
|
||||
if self.owner.groupBox_cbar.isChecked():
|
||||
cbar_range = (self.owner.doubleSpinBox_cbar_start,
|
||||
self.owner.doubleSpinBox_cbar_end)
|
||||
cbar_range = (self.owner.doubleSpinBox_cbar_start.value(),
|
||||
self.owner.doubleSpinBox_cbar_end.value())
|
||||
if self.owner.groupBox_signal_threshold.isChecked():
|
||||
signal_threshold = self.owner.spinBox_signal_threshold.value()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue