Changes in / [fa3da01:6fbb859] in sasview


Ignore:
File:
1 edited

Legend:

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

    rbb477f5 rdaf7c9c  
    29432943        self.current_shell_displayed = index 
    29442944 
    2945         # Change 'n' in the parameter model, thereby updating the underlying model 
     2945        # Param values for existing shells were reset to default; force all changes into kernel module 
     2946        for row in new_rows: 
     2947            par = row[0].text() 
     2948            val = GuiUtils.toDouble(row[1].text()) 
     2949            self.kernel_module.setParam(par, val) 
     2950 
     2951        # Change 'n' in the parameter model; also causes recalculation 
    29462952        self._model_model.item(self._n_shells_row, 1).setText(str(index)) 
    29472953 
Note: See TracChangeset for help on using the changeset viewer.