Ignore:
Timestamp:
Nov 20, 2018 4:06:25 AM (5 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
Branches:
ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
be7c981
Parents:
8c85ac1
Message:

Batch results tabs now have meaningful names SASVIEW-1204

File:
1 edited

Legend:

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

    raed0532 rc4c4957  
    11import logging 
     2import copy 
    23 
    34from twisted.internet import threads 
     
    364365 
    365366        # Show the grid panel 
    366         self.parent.communicate.sendDataToGridSignal.emit(result[0]) 
     367        page_name = "ConstSimulPage" 
     368        results = copy.deepcopy(result[0]) 
     369        results.append(page_name) 
     370        self.parent.communicate.sendDataToGridSignal.emit(results) 
    367371 
    368372        msg = "Fitting completed successfully in: %s s.\n" % GuiUtils.formatNumber(elapsed) 
Note: See TracChangeset for help on using the changeset viewer.