Re: Phoenix and AUI
"'Torsten' via wxPython-dev" <[email protected]>
| Newsgroups | gmane.comp.python.wxpython.devel |
|---|---|
| Message-ID | <[email protected]> |
You need to call UnInit()before closing the frame: import wx import wx.lib.agw.aui as AUI app = wx.App() mw = wx.Frame(parent=None, size=(10,10)) aui = AUI.AuiManager() aui.SetManagedWindow(mw) def on_exit(evt): aui.UnInit() evt.Skip() mw.Show() mw.Bind(wx.EVT_CLOSE, on_exit) app.MainLoop() app.Destroy() -- You received this message because you are subscribed to the Google Groups "wxPython-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.