From 8c5904a1c7ee0b78e074572c2cf0fff2b43a766c Mon Sep 17 00:00:00 2001 From: cztomczak Date: Tue, 18 Apr 2017 15:26:30 +0200 Subject: [PATCH] Fix typo in wxpython.py example --- examples/wxpython.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/wxpython.py b/examples/wxpython.py index 01536a87..f03da5e0 100644 --- a/examples/wxpython.py +++ b/examples/wxpython.py @@ -212,11 +212,11 @@ def OnInit(self): def initialize(self): if self.is_initialized: return + self.is_initialized = True self.create_timer() frame = MainFrame() self.SetTopWindow(frame) frame.Show() - self.initialized = True def create_timer(self): # See also "Making a render loop":