[GRASS-SVN] r51443 - grass/branches/releasebranch_6_4/gui/wxpython/dbmgr

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Apr 14 12:06:37 EDT 2012


Author: martinl
Date: 2012-04-14 09:06:37 -0700 (Sat, 14 Apr 2012)
New Revision: 51443

Modified:
   grass/branches/releasebranch_6_4/gui/wxpython/dbmgr/manager.py
Log:
wxGUI(dbmbr): corrent column width (manage tables)
             (merge r51441 from trunk)


Modified: grass/branches/releasebranch_6_4/gui/wxpython/dbmgr/manager.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/dbmgr/manager.py	2012-04-14 15:59:16 UTC (rev 51442)
+++ grass/branches/releasebranch_6_4/gui/wxpython/dbmgr/manager.py	2012-04-14 16:06:37 UTC (rev 51443)
@@ -2245,8 +2245,9 @@
             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()
 



More information about the grass-commit mailing list