From c1cb0e41c50e97870e344e666abbd2b131c461ad Mon Sep 17 00:00:00 2001 From: Corollax Date: Wed, 3 Nov 2010 02:47:20 -0500 Subject: [PATCH] Cleaned up the menu bar a touch. Added some alt-key accelerators, that sort of thing. --- eos | 2 +- gui/mainMenuBar.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/eos b/eos index 50cfd51f1..92007b0d5 160000 --- a/eos +++ b/eos @@ -1 +1 @@ -Subproject commit 50cfd51f128ccad1f480f17a670eaed461b1e6e7 +Subproject commit 92007b0d59e1f35d21debbd7042c13246bf7b26a diff --git a/gui/mainMenuBar.py b/gui/mainMenuBar.py index 19c8ab029..2bddf751f 100644 --- a/gui/mainMenuBar.py +++ b/gui/mainMenuBar.py @@ -36,15 +36,15 @@ class MainMenuBar(wx.MenuBar): fileMenu = wx.Menu() self.Append(fileMenu, "&File") - fileMenu.Append(self.mainFrame.addTabId, "New fitting tab\tCTRL+T", "Close the currently open fit") - fileMenu.Append(self.mainFrame.closeTabId, "Close current fitting tab\tCTRL+W", "Close the currently open fit") + fileMenu.Append(self.mainFrame.addTabId, "&New Tab\tCTRL+T", "Open a new fitting tab") + fileMenu.Append(self.mainFrame.closeTabId, "&Close Tab\tCTRL+W", "Close the current fit") fileMenu.AppendSeparator() fileMenu.Append(self.backupFitsId, "&Backup fits", "Backup all fittings to a XML file") fileMenu.Append(wx.ID_OPEN, "&Import\tCTRL+O", "Import a fit into pyfa.") fileMenu.Append(wx.ID_SAVEAS, "&Export\tCTRL+S", "Export the fit to another format.") - fileMenu.AppendSeparator() + fileMenu.Append(wx.ID_EXIT)