From 3718d20361b445e6d2d344997b1dbbade9a10b69 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Mon, 10 Mar 2014 23:34:00 -0400 Subject: [PATCH] Probably best to generalize. Changed user guide to wiki. --- gui/mainFrame.py | 6 +++--- gui/mainMenuBar.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gui/mainFrame.py b/gui/mainFrame.py index e6475ffae..2d04cb94d 100644 --- a/gui/mainFrame.py +++ b/gui/mainFrame.py @@ -330,8 +330,8 @@ class MainFrame(wx.Frame): dlg.ShowModal() dlg.Destroy() - def goUserGuide(self, event): - wx.LaunchDefaultBrowser('https://github.com/DarkFenX/Pyfa/wiki/User-Guide') + def goWiki(self, event): + wx.LaunchDefaultBrowser('https://github.com/DarkFenX/Pyfa/wiki') def goForums(self, event): wx.LaunchDefaultBrowser('https://forums.eveonline.com/default.aspx?g=posts&t=247609') @@ -364,7 +364,7 @@ class MainFrame(wx.Frame): # Preference dialog self.Bind(wx.EVT_MENU, self.showPreferenceDialog, id = menuBar.preferencesId) # User guide - self.Bind(wx.EVT_MENU, self.goUserGuide, id = menuBar.userGuideId) + self.Bind(wx.EVT_MENU, self.goWiki, id = menuBar.wikiId) # EVE Forums self.Bind(wx.EVT_MENU, self.goForums, id = menuBar.forumId) diff --git a/gui/mainMenuBar.py b/gui/mainMenuBar.py index 1f85444b7..040086b85 100644 --- a/gui/mainMenuBar.py +++ b/gui/mainMenuBar.py @@ -33,7 +33,7 @@ class MainMenuBar(wx.MenuBar): self.exportSkillsNeededId = wx.NewId() self.importCharacterId = wx.NewId() self.preferencesId = wx.NewId() - self.userGuideId = wx.NewId() + self.wikiId = wx.NewId() self.forumId = wx.NewId() self.mainFrame = gui.mainFrame.MainFrame.getInstance() @@ -98,7 +98,7 @@ class MainMenuBar(wx.MenuBar): # Help menu helpMenu = wx.Menu() self.Append(helpMenu, "&Help") - helpMenu.Append(self.userGuideId, "User Guide", "Go to User Guide on GitHub") + helpMenu.Append(self.wikiId, "Wiki", "Go to wiki on GitHub") helpMenu.Append(self.forumId, "Forums", "Go to EVE Online Forum thread") helpMenu.AppendSeparator() helpMenu.Append(wx.ID_ABOUT)