Changeset e07f9f4 in sasview for theoryview/perspectives
- Timestamp:
- Apr 23, 2010 3:19:50 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:
- 1a94c36
- Parents:
- b9405cd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
theoryview/perspectives/theory/model_panel.py
rb9405cd re07f9f4 196 196 Tctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 197 197 style=wx.TE_PROCESS_ENTER) 198 Tctl1.SetToolTipString("N pts for averaging over the distribution function.")198 Tctl1.SetToolTipString("Number of points for weighting.") 199 199 Tctl1.SetValue(str (format_number(value))) 200 200 self.sizer4_4.Add(Tctl1, (iy,ix),(1,1), … … 207 207 Tctl2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 208 208 style=wx.TE_PROCESS_ENTER) 209 Tctl2.SetToolTipString(" Only the range between +-(Nsigmas times Sigma) of the distribution function will be weighted for the calculation.")209 Tctl2.SetToolTipString("Number of sigmas between which the range of the distribution function will be used for weighting. The value '3' covers 99.5% for Gaussian distribution function.") 210 210 Tctl2.SetValue(str (format_number(value))) 211 211 self.sizer4_4.Add(Tctl2, (iy,ix),(1,1), … … 255 255 Tctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 256 256 style=wx.TE_PROCESS_ENTER) 257 Tctl1.SetToolTipString("N pts for averaging over the distribution function.")257 Tctl1.SetToolTipString("Number of points for weighting.") 258 258 Tctl1.SetValue(str (format_number(value))) 259 259 if not self.enable2D: … … 274 274 Tctl2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 275 275 style=wx.TE_PROCESS_ENTER) 276 Tctl2.SetToolTipString(" Only the range between +-(Nsigmas times Sigma) of the distribution function will be weighted for the calculation.")276 Tctl2.SetToolTipString("Number of sigmas between which the range of the distribution function will be used for weighting. The value '3' covers 99.5% for Gaussian distribution function.") 277 277 Tctl2.SetValue(str (format_number(value))) 278 278 if not self.enable2D:
Note: See TracChangeset
for help on using the changeset viewer.