Merge branch 'master' of evefit.org:pyfa

This commit is contained in:
Niklas Bölter
2010-11-22 21:23:07 +01:00
2 changed files with 3 additions and 6 deletions

View File

@@ -37,8 +37,8 @@ class MainMenuBar(wx.MenuBar):
fileMenu = wx.Menu()
self.Append(fileMenu, "&File")
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.Append(self.mainFrame.addPageId, "&New Tab\tCTRL+T", "Open a new fitting tab")
fileMenu.Append(self.mainFrame.closePageId, "&Close Tab\tCTRL+W", "Close the current fit")
fileMenu.AppendSeparator()
fileMenu.Append(self.backupFitsId, "&Backup fits", "Backup all fittings to a XML file")

View File

@@ -3,12 +3,9 @@ import copy
from gui import bitmapLoader
import gui.mainFrame
import gui.builtinViews.fittingView
import service
import time
import os
import config
import service.fit
from gui.PFListPane import PFListPane
import service
from wx.lib.buttons import GenBitmapButton