[GRASS-SVN] r48146 -
grass/branches/develbranch_6/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Sep 5 15:04:09 EDT 2011
Author: martinl
Date: 2011-09-05 12:04:09 -0700 (Mon, 05 Sep 2011)
New Revision: 48146
Modified:
grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py
Log:
wxGUI: fix OnSearchModule()
(merge r48145 from trunk)
Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py 2011-09-05 19:00:47 UTC (rev 48145)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py 2011-09-05 19:04:09 UTC (rev 48146)
@@ -162,7 +162,7 @@
if text in data['desc']:
found = True
elif sel == 1: # keywords
- if self.cmdPrompt.CheckKey(text, data['keywords']):
+ if text in ','.join(data['keywords']):
found = True
else: # command
if module[:len(text)] == text:
More information about the grass-commit
mailing list