Changeset dd545d1 in sasview
- Timestamp:
- Oct 17, 2018 7:56:30 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:
- 9d23e4c, 6040cd7
- Parents:
- d2007a8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
rd2007a8 rdd545d1 3538 3538 except: 3539 3539 pass 3540 else:3541 param_checked = str(self._model_model.item(row, 0).checkState() == QtCore.Qt.Checked)3542 param_value = str(self._model_model.item(row, 1).text())3543 param_error = None3544 param_min = None3545 param_max = None3546 column_offset = 03547 if self.has_error_column:3548 param_error = str(self._model_model.item(row, 2).text())3549 column_offset = 13550 3540 3551 3541 param_list.append([param_name, param_checked, param_value, param_min, param_max])
Note: See TracChangeset
for help on using the changeset viewer.