Changeset b9405cd in sasview for theoryview/perspectives/theory
- Timestamp:
- Apr 23, 2010 2:52:41 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:
- e07f9f4
- Parents:
- 0b57a57
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
theoryview/perspectives/theory/model_panel.py
r52efcc5 rb9405cd 186 186 ctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH,20), 187 187 style=wx.TE_PROCESS_ENTER) 188 ctl1.SetToolTipString("Polydispersity multiflied by the value of '%s'."%item) 188 189 ctl1.SetValue(str (format_number(value))) 189 190 self.sizer4_4.Add(ctl1, (iy,ix),(1,1), wx.EXPAND) … … 195 196 Tctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 196 197 style=wx.TE_PROCESS_ENTER) 198 Tctl1.SetToolTipString("Npts for averaging over the distribution function.") 197 199 Tctl1.SetValue(str (format_number(value))) 198 200 self.sizer4_4.Add(Tctl1, (iy,ix),(1,1), … … 205 207 Tctl2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 206 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.") 207 210 Tctl2.SetValue(str (format_number(value))) 208 211 self.sizer4_4.Add(Tctl2, (iy,ix),(1,1), … … 234 237 ctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH,20), 235 238 style=wx.TE_PROCESS_ENTER) 239 ctl1.SetToolTipString("Polydispersity multiflied by the value of '%s'."%item) 236 240 ctl1.SetValue(str (format_number(value))) 237 241 if not self.enable2D: … … 251 255 Tctl1 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 252 256 style=wx.TE_PROCESS_ENTER) 257 Tctl1.SetToolTipString("Npts for averaging over the distribution function.") 253 258 Tctl1.SetValue(str (format_number(value))) 254 259 if not self.enable2D: … … 269 274 Tctl2 = self.ModelTextCtrl(self, -1, size=(_BOX_WIDTH/2,20), 270 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.") 271 277 Tctl2.SetValue(str (format_number(value))) 272 278 if not self.enable2D:
Note: See TracChangeset
for help on using the changeset viewer.