Ignore:
Timestamp:
Aug 13, 2018 9:48:38 AM (6 years ago)
Author:
Torin Cooper-Bennun <torin.cooper-bennun@…>
Branches:
ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
e752ab8
Parents:
6b3a231
Message:

allow for only P(Q) or S(Q) to be present in intermediate results; improve comments

File:
1 edited

Legend:

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

    r6b3a231 rb4d05bd  
    22332233        # Create plots for intermediate product data 
    22342234        pq_data, sq_data = self.logic.new1DProductPlots(return_data, self.tab_id) 
    2235         if pq_data is not None and sq_data is not None: 
     2235        if pq_data is not None: 
    22362236            pq_data.symbol = "Line" 
     2237            self.createNewIndex(pq_data) 
     2238        if sq_data is not None: 
    22372239            sq_data.symbol = "Line" 
    2238             self.createNewIndex(pq_data) 
    22392240            self.createNewIndex(sq_data) 
    22402241 
Note: See TracChangeset for help on using the changeset viewer.