Changeset f56bf29 in sasview


Ignore:
Timestamp:
Jun 13, 2011 2:31:22 PM (13 years ago)
Author:
Jae Cho <jhjcho@…>
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
Message:

more correction of error textctrl for mac

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansview/perspectives/fitting/fitpage.py

    rce92ded rf56bf29  
    18451845            #Set the panel when fit result are list 
    18461846            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:      
    18481848                    ## 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() 
    18511852                     
    18521853                    for ind in range(len(out)): 
     
    25572558                             wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 5) 
    25582559        ix +=1 
    2559         self.text2_2 = wx.StaticText(self, -1, 'Values') 
     2560        self.text2_2 = wx.StaticText(self, -1, 'Value') 
    25602561        sizer.Add(self.text2_2,(iy, ix),(1,1),\ 
    25612562                            wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
    25622563        ix +=2  
    2563         self.text2_3 = wx.StaticText(self, -1, 'Errors') 
     2564        self.text2_3 = wx.StaticText(self, -1, 'Error') 
    25642565        sizer.Add(self.text2_3,(iy, ix),(1,1),\ 
    25652566                            wx.EXPAND|wx.ADJUST_MINSIZE, 0)  
Note: See TracChangeset for help on using the changeset viewer.