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

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Aug 16 03:59:44 EDT 2010


Author: martinl
Date: 2010-08-16 07:59:44 +0000 (Mon, 16 Aug 2010)
New Revision: 43134

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py
Log:
wxGUI: remove extra StaticBox from layout
(merge r43133 from trunk)


Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py	2010-08-16 07:55:11 UTC (rev 43133)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py	2010-08-16 07:59:44 UTC (rev 43134)
@@ -768,8 +768,6 @@
 
         self.repoBox = wx.StaticBox(parent = self.panel, id = wx.ID_ANY,
                                     label=" %s " % _("Repository"))
-        self.findBox = wx.StaticBox(parent = self.panel, id = wx.ID_ANY,
-                                    label=" %s " % _("Find extension by"))
         self.treeBox = wx.StaticBox(parent = self.panel, id = wx.ID_ANY,
                                     label=" %s " % _("List of extensions"))
         
@@ -818,7 +816,7 @@
                       flag = wx.EXPAND)
         repoSizer.Add(item = self.fullDesc)
         
-        findSizer = wx.StaticBoxSizer(self.findBox, wx.HORIZONTAL)
+        findSizer = wx.BoxSizer(wx.HORIZONTAL)
         findSizer.Add(item = self.search, proportion = 1)
         
         treeSizer = wx.StaticBoxSizer(self.treeBox, wx.HORIZONTAL)



More information about the grass-commit mailing list