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
@@ -219,7 +219,7 @@ class Inv3SplashScreen(SplashScreen): @@ -219,7 +219,7 @@ class Inv3SplashScreen(SplashScreen):
219 id=-1, 219 id=-1,
220 parent=None) 220 parent=None)
221 self.Bind(wx.EVT_CLOSE, self.OnClose) 221 self.Bind(wx.EVT_CLOSE, self.OnClose)
222 - wx.Yield() 222 + wx.GetApp().Yield()
223 wx.CallLater(200, self.Startup) 223 wx.CallLater(200, self.Startup)
224 224
225 def Startup(self): 225 def Startup(self):