Changeset 23477c6 in sasview for sansguiframe/src
- Timestamp:
- Oct 13, 2011 7:49:23 PM (13 years ago)
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/data_processor.py
r344c5d8 r23477c6 120 120 self.SetNumberCols(self._rows) 121 121 self.AutoSize() 122 self.list_plot_panels = {} 122 123 self.default_col_width = 75 123 124 if self.GetNumberCols() > 0: … … 664 665 self.plot_button = None 665 666 self.notebook = None 666 self.list_plot_panels = {}667 667 668 self.layout_grid() 668 669 self.layout_plotting_area() … … 767 768 768 769 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] 771 772 else: 772 773 group_id = str(grid.uid) + str(new_plot.group_id) 773 self.list_plot_panels[label] = group_id774 grid.list_plot_panels[label] = group_id 774 775 if group_id not in new_plot.list_group_id: 775 776 new_plot.group_id = group_id … … 784 785 info="error")) 785 786 continue 787 """ 786 788 wx.PostEvent(self.parent.parent, 787 789 NewPlotEvent(action="clear", 788 790 group_id=str(group_id), 789 title=title)) 791 title=title)) 792 """ 790 793 wx.PostEvent(self.parent.parent, 791 794 NewPlotEvent(plot=new_plot,
Note: See TracChangeset
for help on using the changeset viewer.