X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8eca4fef106b8327e2e55636de3f68a511a4c392..69d818954b5e6e7b4b4e5093dd26dbe2d5f8546c:/wxPython/demo/Main.py diff --git a/wxPython/demo/Main.py b/wxPython/demo/Main.py index a9c4c3bdd1..b500a003a4 100644 --- a/wxPython/demo/Main.py +++ b/wxPython/demo/Main.py @@ -683,7 +683,7 @@ class wxPythonDemo(wx.Frame): if itemText == self.overviewText: self.LoadDemoSource('Main.py') self.SetOverview(self.overviewText, overview) - self.nb.Refresh(); +## self.nb.Refresh(); self.window = None else: @@ -703,14 +703,14 @@ class wxPythonDemo(wx.Frame): self.tree.Refresh() # in case runTest is modal, make sure things look right... - self.nb.Refresh(); - wx.SafeYield() +## self.nb.Refresh(); +## wx.SafeYield() self.window = module.runTest(self, self.nb, self) ### if self.window is not None: self.nb.AddPage(self.window, 'Demo') self.nb.SetSelection(2) - self.nb.Refresh() # without this wxMac has troubles showing the just added page +## self.nb.Refresh() # without this wxMac has troubles showing the just added page else: self.ovr.SetPage("") @@ -931,7 +931,7 @@ def main(): os.chdir(demoPath) except: pass - app = MyApp(wx.Platform == "__WXMAC__") + app = MyApp(0) ##wx.Platform == "__WXMAC__") app.MainLoop()