浏览代码

wxGUI/query: increase the width of column to display longer labels

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@64562 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová 10 年之前
父节点
当前提交
f2ccf9ba5e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      gui/wxpython/gui_core/query.py

+ 1 - 1
gui/wxpython/gui_core/query.py

@@ -49,7 +49,7 @@ class QueryDialog(wx.Dialog):
                                  wx.TR_FULL_ROW_HIGHLIGHT | wx.TR_MULTIPLE)
 
         self.tree.SetColumnWidth(0, 220)
-        self.tree.SetColumnWidth(1, 400)
+        self.tree.SetColumnWidth(1, 1000)
         self.tree.ExpandAll(self._model.root)
         self.tree.contextMenu.connect(self.ShowContextMenu)
         self.mainSizer.Add(item = self.tree, proportion = 1, flag = wx.EXPAND | wx.ALL, border = 5)