Changeset 04a884a in sasview for src/sas/qtgui/Utilities
- Timestamp:
- Jan 7, 2019 9:23:56 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_sync_sascalc
- Children:
- 10786bc2, 44a698c
- Parents:
- 59b925c1
- git-author:
- Piotr Rozyczko <piotr.rozyczko@…> (01/07/19 09:22:49)
- git-committer:
- Piotr Rozyczko <piotr.rozyczko@…> (01/07/19 09:23:56)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Utilities/GuiUtils.py
r99f8760 r04a884a 1388 1388 for p in params.parameters: 1389 1389 p_name = p[1] 1390 param_dict[p_name] = [str(p[0]), str(p[2]), None, str(p[5][1]), str(p[6][1]) ]1390 param_dict[p_name] = [str(p[0]), str(p[2]), None, str(p[5][1]), str(p[6][1]), []] 1391 1391 # orientation parameters 1392 1392 if params.is_2D: … … 1399 1399 if p[6][1] != "": 1400 1400 p_max = p[6][1] 1401 param_dict[p_name] = [str(p[0]), str(p[2]), None, p_min, p_max ]1401 param_dict[p_name] = [str(p[0]), str(p[2]), None, p_min, p_max, []] 1402 1402 1403 1403 # disperse parameters … … 1426 1426 param_dict[p_name] = [p_opt, p_width, p_min, p_max, p_npts, p_nsigmas, p_disp] 1427 1427 1428 param_dict['is_batch_fitting'] = ['False'] 1428 1429 content[params.data_id]['fit_params'] = param_dict 1430 1429 1431 return content 1430 1432
Note: See TracChangeset
for help on using the changeset viewer.