Changeset 14ecd871 in sasview


Ignore:
Timestamp:
Sep 14, 2011 11:37:04 AM (13 years ago)
Author:
Jae Cho <jhjcho@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
a2da783
Parents:
6a7cf2c
Message:

set residual id based on the data id

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fittingview/src/sans/perspectives/fitting/fitting.py

    rca2bdae r14ecd871  
    16121612        new_plot.interactive = True 
    16131613        ## when 2 data have the same id override the 1 st plotted 
    1614         new_plot.id = new_plot.name#name + " residuals" 
     1614        new_plot.id = "res" + data_copy.id#name + " residuals" 
    16151615        ##group_id specify on which panel to plot this data 
    16161616        new_plot.group_id = new_plot.id 
     
    16181618        ##post data to plot 
    16191619        title = new_plot.name  
    1620          
    16211620        # plot data 
    16221621        wx.PostEvent(self.parent, NewPlotEvent(plot=new_plot, title=title))  
Note: See TracChangeset for help on using the changeset viewer.