[GRASS-SVN] r59833 - grass/trunk/gui/wxpython/gui_core
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Apr 20 05:48:06 PDT 2014
Author: martinl
Date: 2014-04-20 05:48:06 -0700 (Sun, 20 Apr 2014)
New Revision: 59833
Modified:
grass/trunk/gui/wxpython/gui_core/forms.py
Log:
wxGUI forms: 0-margin for title text
Modified: grass/trunk/gui/wxpython/gui_core/forms.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/forms.py 2014-04-20 12:19:59 UTC (rev 59832)
+++ grass/trunk/gui/wxpython/gui_core/forms.py 2014-04-20 12:48:06 UTC (rev 59833)
@@ -443,8 +443,9 @@
module_desc = self.task.label + ' ' + self.task.description
else:
module_desc = self.task.description
+
self.description = StaticWrapText(parent=self.panel,
- label=module_desc, margin=10)
+ label=module_desc)
topsizer.Add(item = self.description, proportion = 1, border = 5,
flag = wx.ALL | wx.ALIGN_CENTER_VERTICAL | wx.EXPAND)
More information about the grass-commit
mailing list