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

svn_grass at osgeo.org svn_grass at osgeo.org
Wed May 12 09:53:07 EDT 2010


Author: martinl
Date: 2010-05-12 09:53:05 -0400 (Wed, 12 May 2010)
New Revision: 42239

Modified:
   grass/trunk/gui/wxpython/gui_modules/ghelp.py
Log:
wxGUI: fix extension manager start-up


Modified: grass/trunk/gui/wxpython/gui_modules/ghelp.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/ghelp.py	2010-05-12 12:12:29 UTC (rev 42238)
+++ grass/trunk/gui/wxpython/gui_modules/ghelp.py	2010-05-12 13:53:05 UTC (rev 42239)
@@ -774,7 +774,7 @@
                                     label = _("Fetch full info including description and keywords (takes time)"))
         self.fullDesc.SetValue(False)
         
-        self.search = SearchModuleWindow(parent = self.panel, showLabel = False)
+        self.search = SearchModuleWindow(parent = self.panel)
         self.search.SetSelection(2) 
         
         self.tree   = ExtensionTree(parent = self.panel, log = parent.GetLogWindow())
@@ -822,9 +822,8 @@
         
         btnSizer = wx.BoxSizer(wx.HORIZONTAL)
         btnSizer.Add(item = self.btnClose, proportion = 0,
-                     flag = wx.LEFT | wx.RIGHT, border = 5)
-        btnSizer.Add(item = self.btnInstall, proportion = 0,
-                     flag = wx.LEFT | wx.RIGHT, border = 5)
+                     flag = wx.RIGHT, border = 5)
+        btnSizer.Add(item = self.btnInstall, proportion = 0)
         
         sizer.Add(item = repoSizer, proportion = 0,
                   flag = wx.ALL | wx.EXPAND, border = 3)



More information about the grass-commit mailing list