Changeset 88a65e2 in sasview for sansguiframe/src/sans/guiframe
- Timestamp:
- Jul 7, 2012 12:39:25 PM (12 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:
- 6c4130a
- Parents:
- 86a9e6c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/gui_manager.py
r86a9e6c r88a65e2 1344 1344 return 1345 1345 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() 1346 1353 style = self.__gui_style & GUIFRAME.MANAGER_ON 1347 1354 id = wx.NewId() … … 1362 1369 self._toolbar_menu = self._view_menu.Append(id, '&Show Toolbar', '') 1363 1370 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)1370 1371 1371 1372 if custom_config != None: 1372 1373 self._view_menu.AppendSeparator() 1373 1374 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) 1375 1379 wx.EVT_MENU(self, id, self._on_preference_menu) 1376 1380
Note: See TracChangeset
for help on using the changeset viewer.