Changeset 7d47789 in sasview for sansguiframe/src/sans
- Timestamp:
- Oct 13, 2011 12:32:57 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:
- 665fd06
- Parents:
- cf0eb8e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/data_processor.py
rcf0eb8e r7d47789 754 754 wx.PostEvent(self.parent.parent, 755 755 StatusEvent(status=msg, info="error")) 756 return756 continue 757 757 758 758 if issubclass(new_plot.__class__, Data1D): … … 773 773 StatusEvent(status=msg, 774 774 info="error")) 775 return775 continue 776 776 wx.PostEvent(self.parent.parent, 777 777 NewPlotEvent(action="clear", … … 884 884 self.y_axis_unit = wx.TextCtrl(self, -1) 885 885 self.view_button = wx.Button(self, -1, "View Results") 886 view_tip = "Highlight data sets orChi2 column first."886 view_tip = "Highlight the data set or the Chi2 column first." 887 887 self.view_button.SetToolTipString(view_tip) 888 888 wx.EVT_BUTTON(self, self.view_button.GetId(), self.on_view) 889 889 self.plot_button = wx.Button(self, -1, "Plot") 890 plot_tip = "Highlight column for axis and click the Add button first." 890 plot_tip = "Highlight a column for each axis and \n" 891 plot_tip += "click the Add buttons first." 891 892 self.plot_button.SetToolTipString(plot_tip) 892 893 self.button_sizer.AddMany( [ (500, 30),
Note: See TracChangeset
for help on using the changeset viewer.