Changeset 2b8286c in sasview for src


Ignore:
Timestamp:
Sep 9, 2018 2:13:00 AM (6 years ago)
Author:
ibressler
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:
c71b20a, f712bf30
Parents:
0dcb71d
Message:

InversionPerspective? fix: plotRequestedSignal requires an id now

Location:
src/sas/qtgui
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/MainWindow/DataExplorer.py

    r5d28d6b r2b8286c  
    593593            self.plotData(new_plots) 
    594594 
    595     def displayData(self, data_list, id): 
     595    def displayData(self, data_list, id=None): 
    596596        """ 
    597597        Forces display of charts for the given data set 
  • src/sas/qtgui/Perspectives/Inversion/InversionPerspective.py

    r3c6ecd9 r2b8286c  
    545545            title = self.prPlot.name 
    546546            GuiUtils.updateModelItemWithPlot(self._data, self.prPlot, title) 
    547             self.communicate.plotRequestedSignal.emit([self.prPlot]) 
     547            self.communicate.plotRequestedSignal.emit([self.prPlot], None) 
    548548        if self.dataPlot is not None: 
    549549            title = self.dataPlot.name 
    550550            GuiUtils.updateModelItemWithPlot(self._data, self.dataPlot, title) 
    551             self.communicate.plotRequestedSignal.emit([self.dataPlot]) 
     551            self.communicate.plotRequestedSignal.emit([self.dataPlot], None) 
    552552        self.enableButtons() 
    553553 
Note: See TracChangeset for help on using the changeset viewer.