Ignore:
Timestamp:
Mar 20, 2017 9:41:02 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:
351b53e
Parents:
4d457df
Message:

More unit tests for fitting perspective components - SASVIEW-499

File:
1 edited

Legend:

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

    r4d457df r7248d75d  
    1414    def __init__(self, data=None): 
    1515        self._data = data 
     16        self.data_is_loaded = False 
     17        if data is not None: 
     18            self.data_is_loaded = True 
    1619 
    1720    @property 
     
    119122 
    120123        new_plot.group_id = data.group_id 
    121         if new_plot.group_id == None: 
    122             new_plot.group_id = data.group_id 
    123124        #new_plot.id = str(self.tab_id) + " " + data.name 
    124125        new_plot.name = model.name + " [" + data.name + "]" 
Note: See TracChangeset for help on using the changeset viewer.