]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/Main.py
Switch to monolithic build because of a dependency problem
[wxWidgets.git] / wxPython / demo / Main.py
index 9fd4ad208a4ff537ed4704ddd96eaf41bad7e0fa..69682c69fcc21e8951cca329e6e0510e4358131d 100644 (file)
@@ -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()
 
 #---------------------------------------------------------------------------