[GRASS-SVN] r33178 - grass/branches/develbranch_6/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Aug 31 18:44:51 EDT 2008


Author: martinl
Date: 2008-08-31 18:44:50 -0400 (Sun, 31 Aug 2008)
New Revision: 33178

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_modules/dbm.py
Log:
wxGUI/dbm: bug fix - trac #207 - table manager tools print plenty of warnings to the terminal


Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/dbm.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/dbm.py	2008-08-31 21:30:54 UTC (rev 33177)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/dbm.py	2008-08-31 22:44:50 UTC (rev 33178)
@@ -820,7 +820,7 @@
         splitterWin = wx.SplitterWindow(parent=self.manageLayerPage, id=wx.ID_ANY)
         self.manageLayerPage.AddPage(page=splitterWin,
                                      text=_("Layers of vector map")) # dummy page
-
+        
         #
         # list of layers
         #
@@ -864,8 +864,8 @@
 
         panelManage.SetSizer(manageSizer)
 
-        #splitterWin.SetMinimumPaneSize(20)
         splitterWin.SplitHorizontally(panelList, panelManage, 100) 
+        splitterWin.Fit()
 
     def __createLayerDesc(self, parent):
         """Create list of linked layers"""



More information about the grass-commit mailing list