X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f9c1b462c7ea8ff8237c475788c180b956d875a5..68fc5c8025e38b9d827383fbfe7ce509ae331c1f:/wxPython/demo/AboutBox.py?ds=sidebyside 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