Changeset fa452e4 in sasview
- Timestamp:
- May 21, 2008 11:31:29 AM (17 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:
- 0954398
- Parents:
- 119a11d
- Location:
- guiframe
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
guiframe/gui_manager.py
r383189f9 rfa452e4 295 295 # Help menu 296 296 helpmenu = wx.Menu() 297 298 # Look for help item in plug-ins 299 for item in self.plugins: 300 if hasattr(item, "help"): 301 id = wx.NewId() 302 helpmenu.Append(id,'&%s help' % item.sub_menu, '') 303 wx.EVT_MENU(self, id, item.help) 304 297 305 if config._do_aboutbox: 298 306 id = wx.NewId() -
guiframe/release_notes.txt
r383189f9 rfa452e4 17 17 - Provide a hook for a general file loader for the various data formats 18 18 - Add group flag to allow groups of plots (and exclude other plots with 19 same units to be plotted in the same Graph. 19 same units to be plotted in the same Graph. [DONE] 20 - If there is only one perspective, drop the perspective menu. 21 - If there is only one panel in the Panel menu, drop the menu. 22 - Make legend transparent 23 - Make sure that when a plottable is sent a second time for update, that we replace the lables too! 24 - Add help menu entry for each module 20 25
Note: See TracChangeset
for help on using the changeset viewer.