[GRASS-SVN] r42241 -
grass/branches/develbranch_6/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed May 12 10:26:24 EDT 2010
Author: martinl
Date: 2010-05-12 10:26:24 -0400 (Wed, 12 May 2010)
New Revision: 42241
Modified:
grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py
Log:
wxGUI: fix extension manager start-up
(merge r42239 from trunk)
Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py 2010-05-12 14:24:06 UTC (rev 42240)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py 2010-05-12 14:26:24 UTC (rev 42241)
@@ -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