Changeset f56bf29 in sasview
- Timestamp:
- Jun 13, 2011 4:31:22 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:
- 3821f64
- Parents:
- ce92ded
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/perspectives/fitting/fitpage.py
rce92ded rf56bf29 1845 1845 #Set the panel when fit result are list 1846 1846 for item in self.param_toFit: 1847 if len(item)>5 and item != None and not self.is_mac:1847 if len(item)>5 and item != None: 1848 1848 ## reset error value to initial state 1849 item[3].Hide() 1850 item[4].Hide() 1849 if not self.is_mac: 1850 item[3].Hide() 1851 item[4].Hide() 1851 1852 1852 1853 for ind in range(len(out)): … … 2557 2558 wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 5) 2558 2559 ix +=1 2559 self.text2_2 = wx.StaticText(self, -1, 'Value s')2560 self.text2_2 = wx.StaticText(self, -1, 'Value') 2560 2561 sizer.Add(self.text2_2,(iy, ix),(1,1),\ 2561 2562 wx.EXPAND|wx.ADJUST_MINSIZE, 0) 2562 2563 ix +=2 2563 self.text2_3 = wx.StaticText(self, -1, 'Error s')2564 self.text2_3 = wx.StaticText(self, -1, 'Error') 2564 2565 sizer.Add(self.text2_3,(iy, ix),(1,1),\ 2565 2566 wx.EXPAND|wx.ADJUST_MINSIZE, 0)
Note: See TracChangeset
for help on using the changeset viewer.