소스 검색

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 년 전
부모
커밋
750d5fcbf4
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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()