diff --git a/gui/mainFrame.py b/gui/mainFrame.py index 734d1e764..234537c91 100644 --- a/gui/mainFrame.py +++ b/gui/mainFrame.py @@ -245,7 +245,11 @@ class MainFrame(wx.Frame): "\nwxPython: \t" + wx.__version__ + "\nSQLAlchemy: \t" + sqlalchemy.__version__, 700, wx.ClientDC(self)) - info.WebSite = ("http://forums.eveonline.com/default.aspx?g=posts&t=247609", "pyfa thread at EVE Online forum") + if "__WXGTK__" in wx.PlatformInfo: + forumUrl = "http://forums.eveonline.com/default.aspx?g=posts&t=247609" + else: + forumUrl = "http://forums.eveonline.com/default.aspx?g=posts&t=247609" + info.WebSite = (forumUrl, "pyfa thread at EVE Online forum") wx.AboutBox(info)