Changeset af20f6b in sasview


Ignore:
Timestamp:
Mar 6, 2010 2:01:28 PM (15 years ago)
Author:
Mathieu Doucet <doucetm@…>
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:
4b35a74
Parents:
c8570c3
Message:

guiframe: removed version checking

File:
1 edited

Legend:

Unmodified
Added
Removed
  • guiframe/gui_manager.py

    r6f59a98 raf20f6b  
    222222 
    223223        # Check for update 
    224         self._check_update(None) 
     224        #self._check_update(None) 
    225225        ## maximum number of opened files' paths to store 
    226226        self.n_maxfileopen =  2 
     
    249249        #self.Fit() 
    250250         
    251         self._check_update(None) 
     251        #self._check_update(None) 
    252252              
    253253    def _setup_layout(self): 
     
    563563            helpmenu.Append(id,'&About', 'Software information') 
    564564            wx.EVT_MENU(self, id, self._onAbout) 
    565         id = wx.NewId() 
    566         helpmenu.Append(id,'&Check for update', 'Check for the latest version of %s' % config.__appname__) 
    567         wx.EVT_MENU(self, id, self._check_update) 
    568          
    569          
    570          
     565             
     566        # Checking for updates needs major refactoring to work with py2exe 
     567        # We need to make sure it doesn't hang the application if the server 
     568        # is not up. We also need to make sure there's a proper executable to 
     569        # run if we spawn a new background process. 
     570        #id = wx.NewId() 
     571        #helpmenu.Append(id,'&Check for update', 'Check for the latest version of %s' % config.__appname__) 
     572        #wx.EVT_MENU(self, id, self._check_update) 
    571573         
    572574        # Look for plug-in menus 
Note: See TracChangeset for help on using the changeset viewer.