Changeset 017ec0b7 in sasview for calculatorview/perspectives/calculator
- Timestamp:
- Apr 28, 2010 1:17:02 PM (15 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:
- d3d955e
- Parents:
- 5b78566
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
calculatorview/perspectives/calculator/sld_panel.py
r39e49a1 r017ec0b7 117 117 self.neutron_sld_reel_ctl = wx.TextCtrl(self, -1, size=(_BOX_WIDTH,-1)) 118 118 self.neutron_sld_reel_ctl.SetEditable(False) 119 self.neutron_sld_reel_ctl.SetToolTipString("Neutron SLD re el.")119 self.neutron_sld_reel_ctl.SetToolTipString("Neutron SLD real.") 120 120 self.neutron_sld_im_ctl = wx.TextCtrl(self, -1, size=(_BOX_WIDTH,-1)) 121 121 self.neutron_sld_im_ctl.SetEditable(False) … … 126 126 self.cu_ka_sld_reel_ctl = wx.TextCtrl(self, -1, size=(_BOX_WIDTH,-1)) 127 127 self.cu_ka_sld_reel_ctl.SetEditable(False) 128 self.cu_ka_sld_reel_ctl.SetToolTipString("Cu Ka SLD re el.")128 self.cu_ka_sld_reel_ctl.SetToolTipString("Cu Ka SLD real.") 129 129 self.cu_ka_sld_im_ctl = wx.TextCtrl(self, -1, size=(_BOX_WIDTH,-1)) 130 130 self.cu_ka_sld_im_ctl.SetEditable(False) … … 135 135 self.mo_ka_sld_reel_ctl = wx.TextCtrl(self, -1, size=(_BOX_WIDTH,-1)) 136 136 self.mo_ka_sld_reel_ctl.SetEditable(False) 137 self.mo_ka_sld_reel_ctl.SetToolTipString("Mo Ka SLD re el.")137 self.mo_ka_sld_reel_ctl.SetToolTipString("Mo Ka SLD real.") 138 138 self.mo_ka_sld_im_ctl = wx.TextCtrl(self, -1, size=(_BOX_WIDTH,-1)) 139 139 self.mo_ka_sld_im_ctl.SetEditable(False) 140 self.mo_ka_sld_im_ctl.SetToolTipString("Mo Ka SLD reel.")140 self.mo_ka_sld_im_ctl.SetToolTipString("Mo Ka SLD imaginary.") 141 141 mo_ka_sld_units_txt = wx.StaticText(self, -1, unit_sld) 142 142 … … 242 242 id = wx.NewId() 243 243 button_calculate = wx.Button(self, id, "Calculate") 244 button_calculate.SetToolTipString("Calculate S lD of neutrons.")244 button_calculate.SetToolTipString("Calculate SLD.") 245 245 self.Bind(wx.EVT_BUTTON, self.calculateSld, id = id) 246 246
Note: See TracChangeset
for help on using the changeset viewer.