Remove some extra Refreshes and such

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26107 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-03-05 23:37:36 +00:00
parent 979fdc00c6
commit 980f458f7f

View File

@@ -683,7 +683,7 @@ class wxPythonDemo(wx.Frame):
if itemText == self.overviewText: if itemText == self.overviewText:
self.LoadDemoSource('Main.py') self.LoadDemoSource('Main.py')
self.SetOverview(self.overviewText, overview) self.SetOverview(self.overviewText, overview)
self.nb.Refresh(); ## self.nb.Refresh();
self.window = None self.window = None
else: else:
@@ -703,14 +703,14 @@ class wxPythonDemo(wx.Frame):
self.tree.Refresh() self.tree.Refresh()
# in case runTest is modal, make sure things look right... # in case runTest is modal, make sure things look right...
self.nb.Refresh(); ## self.nb.Refresh();
wx.SafeYield() ## wx.SafeYield()
self.window = module.runTest(self, self.nb, self) ### self.window = module.runTest(self, self.nb, self) ###
if self.window is not None: if self.window is not None:
self.nb.AddPage(self.window, 'Demo') self.nb.AddPage(self.window, 'Demo')
self.nb.SetSelection(2) 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: else:
self.ovr.SetPage("") self.ovr.SetPage("")
@@ -931,7 +931,7 @@ def main():
os.chdir(demoPath) os.chdir(demoPath)
except: except:
pass pass
app = MyApp(wx.Platform == "__WXMAC__") app = MyApp(0) ##wx.Platform == "__WXMAC__")
app.MainLoop() app.MainLoop()