Changeset 1dd00f4 in sasview


Ignore:
Timestamp:
Jun 13, 2011 9:13:09 AM (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:
cdb042d
Parents:
d7e9792
Message:

try to fix onsetvalue for mac

File:
1 edited

Legend:

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

    rcfbd06a r1dd00f4  
    13031303                    continue 
    13041304                ## hide statictext +/-     
     1305                if len(item) < 4 : 
     1306                    continue 
    13051307                if item[3]!=None and item[3].IsShown(): 
    13061308                    item[3].Hide() 
     
    13171319                        continue 
    13181320                if item in self.param_toFit: 
     1321                    continue 
     1322                if len(item) < 4 : 
    13191323                    continue 
    13201324                ## hide statictext +/-     
     
    17971801         
    17981802        #Hide error title 
    1799         if self.text2_3.IsShown(): 
    1800             self.text2_3.Hide() 
     1803        #if self.text2_3.IsShown(): 
     1804        #    self.text2_3.Hide() 
    18011805       
    18021806        try: 
    18031807            if self.enable_disp.GetValue(): 
    18041808                if hasattr(self,"text_disp_1" ): 
    1805                     if self.text_disp_1 != None: 
     1809                    if self.text_disp_1 != None and self.text_disp_1.IsShown(): 
    18061810                        self.text_disp_1.Hide() 
    18071811        except: 
     
    18471851                            break         
    18481852                    if len(out)<=len(self.param_toFit) and out[ind] !=None:    
    1849                         val_out = format_number(out[ind], True)                   
    1850                         item[2].SetValue(val_out) 
     1853                        val_out = format_number(out[ind], True)  
     1854                        if numpy.isfinite(val_out):                  
     1855                            item[2].SetValue(val_out) 
     1856 
    18511857 
    18521858                    if(cov !=None): 
     
    18661872                                val_err = format_number(cov[ind], True) 
    18671873                                item[3].Show(True) 
     1874                                item[4].SetValue(val_err) 
    18681875                                item[4].Show(True) 
    1869                                 item[4].SetValue(val_err) 
    18701876 
    18711877                                has_error = True 
Note: See TracChangeset for help on using the changeset viewer.