Ignore:
Timestamp:
Sep 8, 2018 2:23:48 PM (6 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
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:
5d28d6b
Parents:
685602a
git-author:
Piotr Rozyczko <rozyczko@…> (09/08/18 14:21:23)
git-committer:
Piotr Rozyczko <rozyczko@…> (09/08/18 14:23:48)
Message:

Clumsy fix to the single-data, multi-fitpage plotting issue SASVIEW-1018.
Fixed tests after replacing plot_dict indexing from .id to .name

File:
1 edited

Legend:

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

    r685602a r5b144c6  
    18411841        data_to_show = self.data if self.data_is_loaded else self.model_data 
    18421842        if data_to_show is not None: 
    1843             self.communicate.plotRequestedSignal.emit([data_to_show]) 
     1843            self.communicate.plotRequestedSignal.emit([data_to_show], self.tab_id) 
    18441844 
    18451845    def onOptionsUpdate(self): 
     
    24222422 
    24232423        if self.data_is_loaded: 
    2424             GuiUtils.deleteRedundantPlots(self.all_data[self.data_index], new_plots) 
     2424            #GuiUtils.deleteRedundantPlots(self.all_data[self.data_index], new_plots) 
     2425            pass 
    24252426        else: 
    24262427            # delete theory items for the model, in order to get rid of any redundant items, e.g. beta(Q), S_eff(Q) 
Note: See TracChangeset for help on using the changeset viewer.