[GRASS-SVN] r48147 - grass/branches/releasebranch_6_4/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Sep 5 15:07:48 EDT 2011


Author: martinl
Date: 2011-09-05 12:07:48 -0700 (Mon, 05 Sep 2011)
New Revision: 48147

Modified:
   grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/ghelp.py
Log:
wxGUI: fix OnSearchModule()
      (merge r48145 from trunk)


Modified: grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/ghelp.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/ghelp.py	2011-09-05 19:04:09 UTC (rev 48146)
+++ grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/ghelp.py	2011-09-05 19:07:48 UTC (rev 48147)
@@ -160,7 +160,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