Changeset 88a65e2 in sasview


Ignore:
Timestamp:
Jul 7, 2012 12:39:25 PM (12 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:
6c4130a
Parents:
86a9e6c
Message:

added batch window tip and changed the menu position to the top

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansguiframe/src/sans/guiframe/gui_manager.py

    r86a9e6c r88a65e2  
    13441344            return 
    13451345        self._view_menu = wx.Menu() 
     1346         
     1347        id = wx.NewId() 
     1348        hint = "Display the Grid Window for batch results etc." 
     1349        self._view_menu.Append(id, '&Show Grid Window', hint)  
     1350        wx.EVT_MENU(self, id, self.show_batch_frame) 
     1351         
     1352        self._view_menu.AppendSeparator() 
    13461353        style = self.__gui_style & GUIFRAME.MANAGER_ON 
    13471354        id = wx.NewId() 
     
    13621369            self._toolbar_menu = self._view_menu.Append(id, '&Show Toolbar', '') 
    13631370        wx.EVT_MENU(self, id, self._on_toggle_toolbar) 
    1364                      
    1365         self._view_menu.AppendSeparator() 
    1366         id = wx.NewId() 
    1367         hint = "Display batch results into a grid" 
    1368         self._view_menu.Append(id, '&Show Grid Window', hint)  
    1369         wx.EVT_MENU(self, id, self.show_batch_frame) 
    13701371 
    13711372        if custom_config != None: 
    13721373            self._view_menu.AppendSeparator() 
    13731374            id = wx.NewId() 
    1374             preference_menu = self._view_menu.Append(id, 'Startup Setting', '') 
     1375            hint_ss = "Select the current/default configuration " 
     1376            hint_ss += "as a startup setting" 
     1377            preference_menu = self._view_menu.Append(id, 'Startup Setting',  
     1378                                                     hint_ss) 
    13751379            wx.EVT_MENU(self, id, self._on_preference_menu) 
    13761380             
Note: See TracChangeset for help on using the changeset viewer.