Changeset e20870bc in sasview for src/sas/qtgui/Perspectives/Fitting
- Timestamp:
- Jun 27, 2018 5:33:52 AM (6 years ago)
- Branches:
- ESS_GUI, 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:
- b1a7a81
- Parents:
- c5e0d84
- git-author:
- Piotr Rozyczko <rozyczko@…> (05/31/18 07:15:47)
- git-committer:
- Piotr Rozyczko <rozyczko@…> (06/27/18 05:33:52)
- Location:
- src/sas/qtgui/Perspectives/Fitting
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
r9a7c81c re20870bc 384 384 self.chk2DView.setVisible(False) 385 385 self.chkMagnetism.setEnabled(self.is2D) 386 self.tabFitting.setTabEnabled(TAB_MAGNETISM, self. is2D)386 self.tabFitting.setTabEnabled(TAB_MAGNETISM, self.chkMagnetism.isChecked()) 387 387 # Combo box or label for file name" 388 388 if self.is_batch_fitting: … … 510 510 511 511 # Signals from separate tabs asking for replot 512 self.options_widget.plot_signal.connect(self.onOptionsUpdate) 512 513 self.options_widget.plot_signal.connect(self.onOptionsUpdate) 513 514 -
src/sas/qtgui/Perspectives/Fitting/OptionsWidget.py
r9a7c81c re20870bc 127 127 Callback for running the mask editor 128 128 """ 129 self.parent.communicate.maskEditorSignal.emit(self.logic.data) 129 130 pass 130 131
Note: See TracChangeset
for help on using the changeset viewer.