浏览代码

wxGUI forms: 0-margin for title text

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@59833 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 11 年之前
父节点
当前提交
b71696c20c
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      gui/wxpython/gui_core/forms.py

+ 2 - 1
gui/wxpython/gui_core/forms.py

@@ -443,8 +443,9 @@ class TaskFrame(wx.Frame):
             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)