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

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Sep 5 15:00:47 EDT 2011


Author: martinl
Date: 2011-09-05 12:00:47 -0700 (Mon, 05 Sep 2011)
New Revision: 48145

Modified:
   grass/trunk/gui/wxpython/gui_modules/ghelp.py
Log:
wxGUI: fix OnSearchModule()


Modified: grass/trunk/gui/wxpython/gui_modules/ghelp.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/ghelp.py	2011-09-05 17:28:26 UTC (rev 48144)
+++ grass/trunk/gui/wxpython/gui_modules/ghelp.py	2011-09-05 19:00:47 UTC (rev 48145)
@@ -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