]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/About.py
added wxVaCopy() and use it to fix wxVsnprintf() crash (see bug 1017651)
[wxWidgets.git] / wxPython / demo / About.py
index 9b5ff7d3ff05ebf6c16dd22a04f82b1d53a3c0a9..badc45fcaab65cd132ee1e71614ccf017e615cc9 100644 (file)
@@ -46,6 +46,8 @@ demo item so you can learn how to use the classes yourself.</p>
     def __init__(self, parent):
         wx.Dialog.__init__(self, parent, -1, 'About the wxPython demo',)
         html = wx.html.HtmlWindow(self, -1, size=(420, -1))
+        if "gtk2" in wx.PlatformInfo:
+            html.SetStandardFonts()
         py_version = sys.version.split()[0]
         html.SetPage(self.text % (wx.VERSION_STRING, py_version))
         btn = html.FindWindowById(wx.ID_OK)