Browse Source

wxGUI(dbmbr): corrent column width (manage tables)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@51441 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 13 years ago
parent
commit
750d5fcbf4
1 changed files with 2 additions and 1 deletions
  1. 2 1
      gui/wxpython/dbmgr/manager.py

+ 2 - 1
gui/wxpython/dbmgr/manager.py

@@ -2248,8 +2248,9 @@ class TableListCtrl(wx.ListCtrl,
             i = 0
             for h in headings:
                 self.InsertColumn(col = i, heading = h)
-                self.SetColumnWidth(col = i, width = 150)
                 i += 1
+            self.SetColumnWidth(col = 0, width = 350)
+            self.SetColumnWidth(col = 1, width = 175)
         else:
             self.DeleteAllItems()