[GRASS-SVN] r33179 - grass/trunk/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Aug 31 18:47:54 EDT 2008


Author: martinl
Date: 2008-08-31 18:47:54 -0400 (Sun, 31 Aug 2008)
New Revision: 33179

Modified:
   grass/trunk/gui/wxpython/gui_modules/dbm.py
Log:
wxGUI/dbm: bug fix - trac #207 - table manager tools print plenty of warnings to the terminal
(merge from devbr6, r33178)


Modified: grass/trunk/gui/wxpython/gui_modules/dbm.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/dbm.py	2008-08-31 22:44:50 UTC (rev 33178)
+++ grass/trunk/gui/wxpython/gui_modules/dbm.py	2008-08-31 22:47:54 UTC (rev 33179)
@@ -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