Changeset 90b23e1 in sasview for calculatorview/perspectives/calculator
- Timestamp:
- May 3, 2010 7:13:00 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:
- ad6f597
- Parents:
- 2eb3a682
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
calculatorview/perspectives/calculator/sld_panel.py
r017ec0b7 r90b23e1 146 146 self.neutron_inc_ctl.SetToolTipString("Neutron Inc. Xs") 147 147 neutron_inc_units_txt = wx.StaticText(self, -1, unit_cm1) 148 149 neutron_abs_txt = wx.StaticText(self, -1, 'Neutron Abs. Xs') 148 neutron_inc_txt.Hide() 149 self.neutron_inc_ctl.Hide() 150 neutron_inc_units_txt.Hide() 151 neutron_abs_txt = wx.StaticText(self, -1, 'Neutron Abs. Xs') 150 152 self.neutron_abs_ctl = wx.TextCtrl(self, -1, size=(_BOX_WIDTH,-1)) 151 153 self.neutron_abs_ctl.SetEditable(False) 152 154 self.neutron_abs_ctl.SetToolTipString("Neutron Abs. Xs") 153 155 neutron_abs_units_txt = wx.StaticText(self, -1, unit_cm1) 154 156 neutron_abs_txt.Hide() 157 self.neutron_abs_ctl.Hide() 158 neutron_abs_units_txt.Hide() 155 159 neutron_length_txt = wx.StaticText(self, -1, 'Neutron 1/e length') 156 160 self.neutron_length_ctl = wx.TextCtrl(self, -1, size=(_BOX_WIDTH,-1)) … … 158 162 self.neutron_length_ctl.SetToolTipString("Neutron 1/e length") 159 163 neutron_length_units_txt = wx.StaticText(self, -1, unit_cm) 164 neutron_length_txt.Hide() 165 self.neutron_length_ctl.Hide() 166 neutron_length_units_txt.Hide() 160 167 iy = 0 161 168 ix = 0
Note: See TracChangeset
for help on using the changeset viewer.