]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/Main.py
Fixed compilation error
[wxWidgets.git] / wxPython / demo / Main.py
index 74318bcd627877aafd88a6bf4d3f92e3b711302f..edcd378ee6b207b807e38b97879b519024b7d2e5 100644 (file)
@@ -24,6 +24,7 @@ import images
 _treeList = [
     ('New since last release', ['ContextHelp',
                                 'PyCrust',
+                                'PyCrustWithFilling',
                                 'VirtualListCtrl',
                                 'wxListCtrl',
                                 'TablePrint',
@@ -118,7 +119,7 @@ class wxPythonDemo(wxFrame):
         EVT_ERASE_BACKGROUND(splitter, EmptyHandler)
         EVT_ERASE_BACKGROUND(splitter2, EmptyHandler)
 
-        # Prevent TreeCtrl from displaying all items after destruction
+        # Prevent TreeCtrl from displaying all items after destruction when true
         self.dying = false
 
         # Make a File menu
@@ -194,6 +195,7 @@ class wxPythonDemo(wxFrame):
         else:  # hopefully I can remove this hacky code soon, see bug #216861
             panel = wxPanel(self.nb, -1, style=wxCLIP_CHILDREN)
             self.ovr = wxHtmlWindow(panel, -1, size=(400, 400))
+            self.ovr.SetFonts("", "", [7, 8, 10, 12, 16, 22, 30])
             self.nb.AddPage(panel, "Overview")
 
             def OnOvrSize(evt, ovr=self.ovr):
@@ -209,7 +211,6 @@ class wxPythonDemo(wxFrame):
         # Set up a TextCtrl on the Demo Code Notebook page
         self.txt = wxTextCtrl(self.nb, -1,
                               style = wxTE_MULTILINE|wxTE_READONLY|wxHSCROLL)
-        self.txt.SetFont(wxFont(9, wxMODERN, wxNORMAL, wxNORMAL, false))
         self.nb.AddPage(self.txt, "Demo Code")