Changeset 30339cc in sasview for src/sas/qtgui
- Timestamp:
- Aug 21, 2018 5:55:59 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- e11106e
- Parents:
- 0d8b2db
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
recfe6b6 r30339cc 1650 1650 Take func and throw it inside the magnet model row loop 1651 1651 """ 1652 for row_i in range(self._m odel_model.rowCount()):1652 for row_i in range(self._magnet_model.rowCount()): 1653 1653 func(row_i) 1654 1654 … … 1662 1662 if self._magnet_model.rowCount() == 0: 1663 1663 return 1664 1665 def iterateOverMagnetModel(func):1666 """1667 Take func and throw it inside the magnet model row loop1668 """1669 for row_i in range(self._magnet_model.rowCount()):1670 func(row_i)1671 1664 1672 1665 def updateFittedValues(row):
Note: See TracChangeset
for help on using the changeset viewer.