Changeset 304d082 in sasview for src/sas/qtgui/Plotting/LinearFit.py
- Timestamp:
- Oct 31, 2017 10:00:59 AM (7 years ago)
- Branches:
- ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 6280464
- Parents:
- 0849aec
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Plotting/LinearFit.py
r0849aec r304d082 19 19 20 20 class LinearFit(QtWidgets.QDialog, Ui_LinearFitUI): 21 updatePlot = QtCore.pyqtSignal(tuple) 21 22 def __init__(self, parent=None, 22 23 data=None, … … 178 179 self.txtChi2.setText(formatNumber(self.Chivalue)) 179 180 180 #self.parent.updatePlot.emit((tempx, tempy)) 181 self.parent.emit(QtCore.SIGNAL('updatePlot'), (tempx, tempy)) 181 self.updatePlot.emit((tempx, tempy)) 182 182 183 183 def origData(self):
Note: See TracChangeset
for help on using the changeset viewer.