1
0
Fork 0
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:
Alexander Minges 2015-07-10 00:04:20 +02:00
parent e73a646e48
commit 9e7fdae9bf

View file

@ -45,8 +45,8 @@ class Worker(QRunnable):
c_lower = self.owner.doubleSpinBox_lower.value() c_lower = self.owner.doubleSpinBox_lower.value()
c_upper = self.owner.doubleSpinBox_upper.value() c_upper = self.owner.doubleSpinBox_upper.value()
if self.owner.groupBox_cbar.isChecked(): if self.owner.groupBox_cbar.isChecked():
cbar_range = (self.owner.doubleSpinBox_cbar_start, cbar_range = (self.owner.doubleSpinBox_cbar_start.value(),
self.owner.doubleSpinBox_cbar_end) self.owner.doubleSpinBox_cbar_end.value())
if self.owner.groupBox_signal_threshold.isChecked(): if self.owner.groupBox_signal_threshold.isChecked():
signal_threshold = self.owner.spinBox_signal_threshold.value() signal_threshold = self.owner.spinBox_signal_threshold.value()