make about dialog on Windows not so big
authorAndrey Skvortsov <andrej.skvortzov@gmail.com>
Fri, 02 Dec 2016 17:48:26 +0300
changeset 1589 a5fd07db1db6
parent 1588 9277d3174744
child 1590 cdf95900d44f
make about dialog on Windows not so big


It was automatically expanded to place description in one line.
dialogs/AboutDialog.py
--- a/dialogs/AboutDialog.py	Thu Dec 01 18:31:10 2016 +0300
+++ b/dialogs/AboutDialog.py	Fri Dec 02 17:48:26 2016 +0300
@@ -51,6 +51,7 @@
 
         name = wx.StaticText(self, label="%s %s" % (info.Name, info.Version))
         description = wx.StaticText(self, label=info.Description)
+        description.Wrap(400)
         copyright = wx.StaticText(self, label=info.Copyright)
         url = HyperLinkCtrl(self, label=info.WebSite[0], URL=info.WebSite[1])