Export fitting to EVE, fix json bugs, and include forgotten CREST service.

This commit is contained in:
blitzmann
2015-10-18 17:13:19 -04:00
parent 23dbb59f3f
commit b1729095a0
5 changed files with 108 additions and 14 deletions

View File

@@ -41,6 +41,7 @@ class MainMenuBar(wx.MenuBar):
self.saveCharAsId = wx.NewId()
self.revertCharId = wx.NewId()
self.eveFittingsId = wx.NewId()
self.exportToEveId = wx.NewId()
self.mainFrame = gui.mainFrame.MainFrame.getInstance()
@@ -106,8 +107,8 @@ class MainMenuBar(wx.MenuBar):
# CREST Menu
crestMenu = wx.Menu()
self.Append(crestMenu, "&CREST")
eveFittings = wx.MenuItem(crestMenu, self.eveFittingsId, "Browse EVE Fittings")
crestMenu.AppendItem(eveFittings)
crestMenu.Append(self.eveFittingsId, "Browse EVE Fittings")
crestMenu.Append(self.exportToEveId, "Export To EVE")
# Help menu
helpMenu = wx.Menu()