X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/317a64e59a6f107f8d50dcc4e9396b74dc0b473e..c39ee0ad468f416cd76e2dcc2bc9fe435ce43a6d:/wxPython/demo/Main.py diff --git a/wxPython/demo/Main.py b/wxPython/demo/Main.py index 9fd4ad208a..69682c69fc 100644 --- a/wxPython/demo/Main.py +++ b/wxPython/demo/Main.py @@ -52,7 +52,7 @@ _treeList = [ ]), # managed windows == things with a (optional) caption you can close - ('Base Frames and Dialogs', [ + ('Frames and Dialogs', [ 'Dialog', 'Frame', 'MDIWindows', @@ -1310,8 +1310,8 @@ class wxPythonDemo(wx.Frame): if loadSource: self.LoadDemoSource() - self.UpdateNotebook() self.SetOverview(self.demoModules.name + " Overview", overviewText) + self.UpdateNotebook() #--------------------------------------------- def ShutdownDemoModule(self): @@ -1607,7 +1607,7 @@ def main(): os.chdir(demoPath) except: pass - app = MyApp(0) ##wx.Platform == "__WXMAC__") + app = MyApp(False) app.MainLoop() #---------------------------------------------------------------------------