From cdc353eba2f7b75ee009d74dd81c1b3ff151e73d Mon Sep 17 00:00:00 2001 From: Thiago Franco de Moraes Date: Thu, 2 Apr 2020 16:10:49 -0300 Subject: [PATCH] wx.Yield() deprecated using wx.GetApp().Yield() --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index d35dfa6..77d00cc 100644 --- a/app.py +++ b/app.py @@ -219,7 +219,7 @@ class Inv3SplashScreen(SplashScreen): id=-1, parent=None) self.Bind(wx.EVT_CLOSE, self.OnClose) - wx.Yield() + wx.GetApp().Yield() wx.CallLater(200, self.Startup) def Startup(self): -- libgit2 0.21.2