From 40ec83be66b89f7ae5cb66001e4245d7b5f948ff Mon Sep 17 00:00:00 2001 From: ccremers Date: Fri, 11 Aug 2006 10:19:12 +0000 Subject: [PATCH] - Added some credits. --- gui/Gui/Mainwindow.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gui/Gui/Mainwindow.py b/gui/Gui/Mainwindow.py index 7171ac2..5cc5426 100644 --- a/gui/Gui/Mainwindow.py +++ b/gui/Gui/Mainwindow.py @@ -178,7 +178,12 @@ class MainWindow(wx.Frame): # Event handlers: def OnAbout(self, event): - msg = "Scyther GUI\n\nScyther and Scyther GUI\ndeveloped by Cas Cremers" + msg = "Scyther" + msg += "\n" + msg += "\nScyther and Scyther GUI" + msg += "\ndeveloped by Cas Cremers 2004-2006" + msg += "\n" + msg += "\nCredits: Gijs Hollestelle (Python wrapper around Scyther XML)" dialog = wx.MessageDialog(self,msg, 'About scyther-gui', wx.OK) dialog.ShowModal() dialog.Destroy()