Changeset 085409e3 in sasview for src/sas/qtgui/Perspectives/Fitting/FittingPerspective.py
- Timestamp:
- Sep 25, 2018 8:21:53 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 9b9ec10
- Parents:
- 2dce1d8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FittingPerspective.py
rdee9e5f r085409e3 63 63 self.fittingStoppedSignal.connect(self.onFittingStopped) 64 64 65 self.communicate.copyFitParamsSignal.connect(self.onParamCopy) 66 self.communicate.pasteFitParamsSignal.connect(self.onParamPaste) 67 65 68 # Perspective window not allowed to close by default 66 69 self._allow_close = False … … 94 97 95 98 self._allow_close = value 99 100 def onParamCopy(self): 101 self.currentTab.onParameterCopy("") 102 103 def onParamPaste(self): 104 self.currentTab.onParameterPaste() 96 105 97 106 def closeEvent(self, event):
Note: See TracChangeset
for help on using the changeset viewer.