From 8bc36f359569e719f50e637c2a8ea20129ae0ebf Mon Sep 17 00:00:00 2001 From: Lucas Thode Date: Tue, 26 Oct 2010 10:59:56 -0500 Subject: [PATCH] Added Ctrl-S shortcut for exporting. --- gui/mainMenuBar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/mainMenuBar.py b/gui/mainMenuBar.py index f69a27736..831c88c7e 100644 --- a/gui/mainMenuBar.py +++ b/gui/mainMenuBar.py @@ -52,7 +52,7 @@ class MainMenuBar(wx.MenuBar): self.fitMenu = fitMenu = wx.Menu() self.Append(fitMenu, "F&it") fitMenu.Append(wx.ID_OPEN, "&Import", "Import a fit into pyfa.") - fitMenu.Append(wx.ID_SAVEAS, "&Export", "Export the fit to another format.") + fitMenu.Append(wx.ID_SAVEAS, "&Export\tCTRL+S", "Export the fit to another format.") clipboardMenu = wx.Menu() self.idExportDna, self.idExportEft, self.idExportXml = wx.NewId(), wx.NewId(), wx.NewId()