Ignore:
Timestamp:
Apr 1, 2009 1:02:56 PM (15 years ago)
Author:
Gervaise Alina <gervyh@…>
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:
9d4e502
Parents:
db39b2a
Message:

removing all codes.and add highlight for textcrtl

File:
1 edited

Legend:

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

    r59a7f2d r1328e03  
    252252                     
    253253                    ctl1.SetValue(str (format_number(value))) 
    254                     ctl1.Bind(wx.EVT_KILL_FOCUS, self._onparamEnter) 
     254                    ctl1.Bind(wx.EVT_SET_FOCUS, self.onSetFocus) 
    255255                    ctl1.Bind(wx.EVT_TEXT_ENTER,self._onparamEnter) 
    256256                    self.sizer4_4.Add(ctl1, (iy,ix),(1,1),wx.EXPAND) 
     
    277277                         
    278278                        Tctl.SetValue(str (format_number(value))) 
    279                         Tctl.Bind(wx.EVT_KILL_FOCUS, self._onparamEnter) 
     279                        Tctl.Bind(wx.EVT_SET_FOCUS, self.onSetFocus) 
    280280                        Tctl.Bind(wx.EVT_TEXT_ENTER,self._onparamEnter) 
    281281                        self.sizer4_4.Add(Tctl, (iy,ix),(1,1), 
     
    291291                                            style=wx.TE_PROCESS_ENTER) 
    292292                        Tctl.SetValue(str (format_number(value))) 
    293                         Tctl.Bind(wx.EVT_KILL_FOCUS, self._onparamEnter) 
     293                        Tctl.Bind(wx.EVT_SET_FOCUS, self.onSetFocus) 
    294294                        Tctl.Bind(wx.EVT_TEXT_ENTER,self._onparamEnter) 
    295295                        self.sizer4_4.Add(Tctl, (iy,ix),(1,1), 
Note: See TracChangeset for help on using the changeset viewer.