X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f9c1b462c7ea8ff8237c475788c180b956d875a5..b4eecebd423df0c6efe86d7658cd3df818d67ed8:/wxPython/demo/AboutBox.py diff --git a/wxPython/demo/AboutBox.py b/wxPython/demo/AboutBox.py index ee75822274..fdec097b7c 100644 --- a/wxPython/demo/AboutBox.py +++ b/wxPython/demo/AboutBox.py @@ -34,6 +34,8 @@ class TestPanel(wx.Panel): "Jane Coder", "Vippy the Mascot" ] + info.License = wordwrap(licenseText, 500, wx.ClientDC(self)) + # Then we call wx.AboutBox giving it that info object wx.AboutBox(info) @@ -61,6 +63,8 @@ generic wxWidgets version of the dialog. """ +licenseText = "blah " * 250 + "\n\n" +"yadda " * 100 + if __name__ == '__main__': import sys,os