]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/Unicode.py
fix text scrolling in GTK2 (patch 703988)
[wxWidgets.git] / wxPython / demo / Unicode.py
index 2e654b6efde8f4eca9e82052cd3aae280e7b1bc1..ec8a052bf90d87e6a4b523464e84fa46736615af 100644 (file)
@@ -56,7 +56,7 @@ class TestPanel(wxPanel):
 
         else:
             f = self.GetFont()
-            font = wxFont(14, f.GetFamily(), f.GetStyle(), wxBOLD, false,
+            font = wxFont(14, f.GetFamily(), f.GetStyle(), wxBOLD, False,
                           f.GetFaceName(), f.GetEncoding())
 
             self.AddLine(box)
@@ -79,7 +79,7 @@ class TestPanel(wxPanel):
 
         border = wxBoxSizer(wxVERTICAL)
         border.Add(box, 1, wxEXPAND|wxALL, 10)
-        self.SetAutoLayout(true)
+        self.SetAutoLayout(True)
         self.SetSizer(border)
 
 
@@ -139,3 +139,12 @@ and then pass the unicode to the wxPython method.
 
 </body></html>
 """
+
+
+
+
+if __name__ == '__main__':
+    import sys,os
+    import run
+    run.main(['', os.path.basename(sys.argv[0])])
+