Ignore:
Timestamp:
Apr 12, 2009 7:39:33 PM (15 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:
45bf0ede
Parents:
8e09f63
Message:

minor changes (some names of titles)

File:
1 edited

Legend:

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

    r81d87347 rfa58441  
    181181        boxsizer1 = wx.StaticBoxSizer(box_description, wx.VERTICAL) 
    182182        #---------------------------------------------------- 
    183         self.disable_disp = wx.RadioButton(self, -1, 'No', (10, 10), style=wx.RB_GROUP) 
    184         self.enable_disp = wx.RadioButton(self, -1, 'Yes', (10, 30)) 
     183        self.disable_disp = wx.RadioButton(self, -1, 'Off', (10, 10), style=wx.RB_GROUP) 
     184        self.enable_disp = wx.RadioButton(self, -1, 'On', (10, 30)) 
    185185        ## saving the state of enable dispersity button 
    186186        self.state.enable_disp= self.enable_disp.GetValue() 
     
    191191        sizer_dispersion = wx.BoxSizer(wx.HORIZONTAL) 
    192192        sizer_dispersion.Add((20,20)) 
    193         name="Polydispersity and \nOrientational Distribution " 
     193        name=""#Polydispersity and \nOrientational Distribution " 
    194194        sizer_dispersion.Add(wx.StaticText(self,-1,name)) 
    195195        sizer_dispersion.Add(self.enable_disp ) 
     
    200200        ## fill a sizer with the combobox to select dispersion type 
    201201        sizer_select_dispers = wx.BoxSizer(wx.HORIZONTAL)   
    202         self.model_disp = wx.StaticText(self, -1, 'Model Disp') 
     202        self.model_disp = wx.StaticText(self, -1, 'Distribution Function ') 
    203203             
    204204        import sans.models.dispersion_models  
     
    821821        sizer_selection = wx.BoxSizer(wx.HORIZONTAL) 
    822822         
    823         self.text1 = wx.StaticText( self,-1,"P(Q)" ) 
    824         self.text2 = wx.StaticText( self,-1,"* S(Q)" ) 
     823        self.text1 = wx.StaticText( self,-1,"" ) 
     824        self.text2 = wx.StaticText( self,-1,"P(Q)*S(Q)" ) 
    825825         
    826826         
     
    12481248        self.btSave = wx.Button(self,wx.NewId(),'Save') 
    12491249        self.btSave.Bind(wx.EVT_BUTTON, self.onSave,id= self.btSave.GetId()) 
    1250         self.btSave.SetToolTipString("Save current state") 
     1250        self.btSave.SetToolTipString("Save current panel state") 
    12511251          
    12521252        sizer_save.Add((20,20),0, wx.LEFT|wx.RIGHT|wx.EXPAND,120)         
Note: See TracChangeset for help on using the changeset viewer.