- Timestamp:
- Oct 16, 2018 11:02:57 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:
- 21fa45b
- Parents:
- 1efa4c3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
r1efa4c3 rfc9d9a3 3474 3474 3475 3475 param_list.append(['model_name', str(self.cbModel.currentText())]) 3476 3476 3477 def gatherParams(row): 3477 3478 """ … … 3496 3497 3497 3498 if param_name == str(self.cbModel.currentText()): 3498 return3499 elif str(self.cbStructureFactor.currentText()):3500 return3501 3502 param_list.append([param_name, param_checked, param_value, param_error, param_min, param_max])3499 pass 3500 elif param_name == str(self.cbStructureFactor.currentText()): 3501 pass 3502 else: 3503 param_list.append([param_name, param_checked, param_value, param_error, param_min, param_max]) 3503 3504 3504 3505 def gatherPolyParams(row): … … 3574 3575 3575 3576 model = lines[1].split(',') 3577 print(model) 3576 3578 3577 3579 if model[0] != 'model_name': … … 3579 3581 3580 3582 context['model_name'] = [model[1]] 3583 3581 3584 for line in lines[2:-1]: 3582 3585 if len(line) != 0: … … 3663 3666 3664 3667 self.setFocus() 3665 3666 3667 3668 3668 3669 # block signals temporarily, so we don't end up
Note: See TracChangeset
for help on using the changeset viewer.