The about relaxGUI panel does not create its own wx application.
removed in about.py: - app = wx.PySimpleApp(0) - wx.InitAllImageHandlers() - start = MyFrame(None, -1, "") - app.SetTopWindow(start) - start.Show() - app.MainLoop()
changed: xw.Frame to wx.Dialog in about.py
moved in _init_.py (main folder):
+ # start wx Application + relaxGUI = wx.PySimpleApp(0) + wx.InitAllImageHandlers()
--> to start one wx application for about panel and main relaxGUI window
Authored by: bugman 2010-01-20
Parent: [r10259]
Child: [r10261]