Changes in / [b9c94fa:6673d2f] in sasview


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/guiframe/gui_manager.py

    r3fac0df rc8a641e8  
    13451345        self._help_menu.Append(wx_id, '&Documentation', '') 
    13461346        wx.EVT_MENU(self, wx_id, self._onSphinxDocs) 
    1347         self._help_menu.AppendSeparator() 
    13481347 
    13491348        if config._do_tutorial and (IS_WIN or sys.platform == 'darwin'): 
     1349            self._help_menu.AppendSeparator() 
    13501350            wx_id = wx.NewId() 
    13511351            self._help_menu.Append(wx_id, '&Tutorial', 'Software tutorial') 
    13521352            wx.EVT_MENU(self, wx_id, self._onTutorial) 
     1353 
     1354        if config._do_acknowledge: 
    13531355            self._help_menu.AppendSeparator() 
    1354  
    1355  
    1356         if config._do_acknowledge: 
    13571356            wx_id = wx.NewId() 
    13581357            self._help_menu.Append(wx_id, '&Acknowledge', 'Acknowledging SasView') 
    13591358            wx.EVT_MENU(self, wx_id, self._onAcknowledge) 
     1359 
     1360        if config._do_aboutbox: 
    13601361            self._help_menu.AppendSeparator() 
    1361  
    1362  
    1363         if config._do_aboutbox: 
    1364             logging.info("Doing help menu") 
    1365             wx_id = wx.NewId() 
    1366             self._help_menu.Append(wx_id, '&About', 'Software information') 
    1367             wx.EVT_MENU(self, wx_id, self._onAbout) 
    1368             self._help_menu.AppendSeparator() 
    1369  
     1362            self._help_menu.Append(wx.ID_ABOUT, '&About', 'Software information') 
     1363            wx.EVT_MENU(self, wx.ID_ABOUT, self._onAbout) 
    13701364 
    13711365        # Checking for updates 
Note: See TracChangeset for help on using the changeset viewer.