Changeset 23477c6 in sasview


Ignore:
Timestamp:
Oct 13, 2011 7:49:23 PM (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:
cd2209d
Parents:
e288ad0
Message:

update group id

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansguiframe/src/sans/guiframe/data_processor.py

    r344c5d8 r23477c6  
    120120        self.SetNumberCols(self._rows) 
    121121        self.AutoSize() 
     122        self.list_plot_panels = {} 
    122123        self.default_col_width = 75 
    123124        if self.GetNumberCols() > 0: 
     
    664665        self.plot_button = None 
    665666        self.notebook = None 
    666         self.list_plot_panels = {} 
     667        
    667668        self.layout_grid() 
    668669        self.layout_plotting_area() 
     
    767768                         
    768769                        if issubclass(new_plot.__class__, Data1D): 
    769                             if label in self.list_plot_panels.keys(): 
    770                                 group_id = self.list_plot_panels[label] 
     770                            if label in grid.list_plot_panels.keys(): 
     771                                group_id = grid.list_plot_panels[label] 
    771772                            else: 
    772773                                group_id = str(grid.uid) + str(new_plot.group_id) 
    773                                 self.list_plot_panels[label] = group_id 
     774                                grid.list_plot_panels[label] = group_id 
    774775                            if group_id not in new_plot.list_group_id: 
    775776                                new_plot.group_id = group_id 
     
    784785                                                              info="error"))  
    785786                                    continue   
     787                        """ 
    786788                        wx.PostEvent(self.parent.parent,  
    787789                                     NewPlotEvent(action="clear", 
    788790                                                  group_id=str(group_id), 
    789                                                   title=title))   
     791                                                  title=title))  
     792                        """  
    790793                        wx.PostEvent(self.parent.parent,  
    791794                                     NewPlotEvent(plot=new_plot,  
Note: See TracChangeset for help on using the changeset viewer.