Commit cdc353eba2f7b75ee009d74dd81c1b3ff151e73d

Authored by Thiago Franco de Moraes
1 parent ef3a1019
Exists in master

wx.Yield() deprecated using wx.GetApp().Yield()

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app.py
... ... @@ -219,7 +219,7 @@ class Inv3SplashScreen(SplashScreen):
219 219 id=-1,
220 220 parent=None)
221 221 self.Bind(wx.EVT_CLOSE, self.OnClose)
222   - wx.Yield()
  222 + wx.GetApp().Yield()
223 223 wx.CallLater(200, self.Startup)
224 224  
225 225 def Startup(self):
... ...