Ignore:
Timestamp:
Sep 7, 2018 9:11:28 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:
fb560d2, c0de493
Parents:
60d55a7
git-author:
Ingo Breßler <dev@…> (09/06/18 09:09:57)
git-committer:
Ingo Breßler <dev@…> (09/07/18 09:11:28)
Message:

ModelThread?: passing calc results by dict instead of tuple

  • prevents error when unpacking the tuple in completeXY methods later
  • and makes it easier to get just a single value from the result
File:
1 edited

Legend:

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

    r73665a8 rdcabba7  
    9191    fittingFinishedSignal = QtCore.pyqtSignal(tuple) 
    9292    batchFittingFinishedSignal = QtCore.pyqtSignal(tuple) 
    93     Calc1DFinishedSignal = QtCore.pyqtSignal(tuple) 
    94     Calc2DFinishedSignal = QtCore.pyqtSignal(tuple) 
     93    Calc1DFinishedSignal = QtCore.pyqtSignal(dict) 
     94    Calc2DFinishedSignal = QtCore.pyqtSignal(dict) 
    9595 
    9696    def __init__(self, parent=None, data=None, tab_id=1): 
Note: See TracChangeset for help on using the changeset viewer.