[GRASS-SVN] r51441 - grass/trunk/gui/wxpython/dbmgr

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Apr 14 11:57:20 EDT 2012


Author: martinl
Date: 2012-04-14 08:57:20 -0700 (Sat, 14 Apr 2012)
New Revision: 51441

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


Modified: grass/trunk/gui/wxpython/dbmgr/manager.py
===================================================================
--- grass/trunk/gui/wxpython/dbmgr/manager.py	2012-04-14 15:27:52 UTC (rev 51440)
+++ grass/trunk/gui/wxpython/dbmgr/manager.py	2012-04-14 15:57:20 UTC (rev 51441)
@@ -2248,8 +2248,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