X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/385721a888e3bbe72485ebc5ae8faf4b0c160042..b843b628c9f936d6a87ca1e9b91e88a4604270c4:/wxPython/demo/About.py?ds=sidebyside diff --git a/wxPython/demo/About.py b/wxPython/demo/About.py index badc45fcaa..567fa54cfd 100644 --- a/wxPython/demo/About.py +++ b/wxPython/demo/About.py @@ -15,6 +15,7 @@ cellpadding="0" border="1">
wxPython is brought to you by Robin Dunn and
-Total Control Software, Copyright (c) 1997-2003.
Please see license.txt for licensing information. @@ -49,7 +50,10 @@ demo item so you can learn how to use the classes yourself.
if "gtk2" in wx.PlatformInfo: html.SetStandardFonts() py_version = sys.version.split()[0] - html.SetPage(self.text % (wx.VERSION_STRING, py_version)) + html.SetPage(self.text % (wx.VERSION_STRING, + ", ".join(wx.PlatformInfo[1:]), + py_version + )) btn = html.FindWindowById(wx.ID_OK) ir = html.GetInternalRepresentation() html.SetSize( (ir.GetWidth()+25, ir.GetHeight()+25) )