X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..5cb0e7ad183cc94a6076134d66fd85fabc375c02:/wxPython/demo/widgetTest.py

diff --git a/wxPython/demo/widgetTest.py b/wxPython/demo/widgetTest.py
index 9a060d045c..ee940e89f4 100644
--- a/wxPython/demo/widgetTest.py
+++ b/wxPython/demo/widgetTest.py
@@ -1,5 +1,7 @@
 
 
+import sys, string
+
 from wxPython.wx   import *
 from wxPython.html import *
 
@@ -41,7 +43,10 @@ class TestHtmlPanel(wxPanel):
         import About
         wxPanel.__init__(self, parent, id, size=size)
         self.html = wxHtmlWindow(self, -1, wxPoint(5,5), wxSize(400, 350))
-        self.html.SetPage(About.MyAboutBox.text % wx.__version__)
+        py_version = string.split(sys.version)[0]
+        self.html.SetPage(About.MyAboutBox.text % (wx.__version__, py_version))
+        ir = self.html.GetInternalRepresentation()
+        self.html.SetSize( (ir.GetWidth()+5, ir.GetHeight()+5) )
         self.Fit()
 
 #----------------------------------------------------------------------