# HG changeset patch # User Andrey Skvortsov # Date 1480690106 -10800 # Node ID a5fd07db1db6f27e9d17aee4cf823ddae658cac2 # Parent 9277d31747447c62b6703053b08ff0f70565147f make about dialog on Windows not so big It was automatically expanded to place description in one line. diff -r 9277d3174744 -r a5fd07db1db6 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])