[GRASS-SVN] r51442 - grass/branches/develbranch_6/gui/wxpython/dbmgr

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Apr 14 11:59:16 EDT 2012


Author: martinl
Date: 2012-04-14 08:59:16 -0700 (Sat, 14 Apr 2012)
New Revision: 51442

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


Modified: grass/branches/develbranch_6/gui/wxpython/dbmgr/manager.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/dbmgr/manager.py	2012-04-14 15:57:20 UTC (rev 51441)
+++ grass/branches/develbranch_6/gui/wxpython/dbmgr/manager.py	2012-04-14 15:59:16 UTC (rev 51442)
@@ -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