We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac6ccd0 commit 0d69688Copy full SHA for 0d69688
1 file changed
gui/mainFrame.py
@@ -245,7 +245,11 @@ def ShowAboutBox(self, evt):
245
"\nwxPython: \t" + wx.__version__ +
246
"\nSQLAlchemy: \t" + sqlalchemy.__version__,
247
700, wx.ClientDC(self))
248
- info.WebSite = ("http://forums.eveonline.com/default.aspx?g=posts&t=247609", "pyfa thread at EVE Online forum")
+ if "__WXGTK__" in wx.PlatformInfo:
249
+ forumUrl = "http://forums.eveonline.com/default.aspx?g=posts&t=247609"
250
+ else:
251
+ forumUrl = "http://forums.eveonline.com/default.aspx?g=posts&t=247609"
252
+ info.WebSite = (forumUrl, "pyfa thread at EVE Online forum")
253
wx.AboutBox(info)
254
255
0 commit comments