Changeset af20f6b in sasview
- Timestamp:
- Mar 6, 2010 2:01:28 PM (15 years ago)
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
guiframe/gui_manager.py
r6f59a98 raf20f6b 222 222 223 223 # Check for update 224 self._check_update(None)224 #self._check_update(None) 225 225 ## maximum number of opened files' paths to store 226 226 self.n_maxfileopen = 2 … … 249 249 #self.Fit() 250 250 251 self._check_update(None)251 #self._check_update(None) 252 252 253 253 def _setup_layout(self): … … 563 563 helpmenu.Append(id,'&About', 'Software information') 564 564 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) 571 573 572 574 # Look for plug-in menus
Note: See TracChangeset
for help on using the changeset viewer.