Changeset 2c3e395 in sasview


Ignore:
Timestamp:
Oct 16, 2018 7:44:55 AM (5 years ago)
Author:
Laura Forster <Awork@…>
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:
1efa4c3
Parents:
a4ceeb7
Message:

If statement to stop NAN appearing on param values

Added a if statement to check if the parameter being copied is actually the line of model name to stop it gaining a checkbox and NAN values.

File:
1 edited

Legend:

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

    r3ab2105 r2c3e395  
    34953495                pass 
    34963496 
     3497            if param_name == str(self.cbModel.currentText()): 
     3498                return 
     3499 
    34973500            param_list.append([param_name, param_checked, param_value, param_error, param_min, param_max]) 
    34983501 
Note: See TracChangeset for help on using the changeset viewer.