Ignore:
Timestamp:
Mar 23, 2017 9:53:10 AM (7 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
Branches:
ESS_GUI, ESS_GUI_Docs, 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:
9934e48
Parents:
29eb947
Message:

FittingWidget? code review SASVIEW-561

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Perspectives/Fitting/FittingUtilities.py

    r7248d75d rb1e36a3  
    3939        item_name = param.name 
    4040        if param in multishell_parameters: 
    41             item_name = replaceShellName(param.name, 1) 
     41            continue 
     42        #    item_name = replaceShellName(param.name, 1) 
    4243 
    4344        item1 = QtGui.QStandardItem(item_name) 
     
    127128    for i in xrange(index): 
    128129        for par in multishell_parameters: 
    129             param_name = replaceShellName(par.name, i+2) 
     130            # Create the name: <param>[<i>], e.g. "sld1" for parameter "sld[n]" 
     131            param_name = replaceShellName(par.name, i+1) 
    130132            item1 = QtGui.QStandardItem(param_name) 
    131133            item1.setCheckable(True) 
Note: See TracChangeset for help on using the changeset viewer.