Configtool: don't use deprecated wxPySimpleApp().
A really simple fix :-)
This commit is contained in:
parent
9f74d315d0
commit
d077ae6e9d
|
|
@ -492,7 +492,7 @@ class ConfigFrame(wx.Frame):
|
|||
|
||||
|
||||
if __name__ == '__main__':
|
||||
app = wx.PySimpleApp()
|
||||
app = wx.App(False)
|
||||
frame = ConfigFrame()
|
||||
frame.Show(True)
|
||||
app.MainLoop()
|
||||
|
|
|
|||
Loading…
Reference in New Issue