Browse Source

wxGUI: fix OnSearchModule()

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@48145 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 13 years ago
parent
commit
e23bd152c2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/wxpython/gui_modules/ghelp.py

+ 1 - 1
gui/wxpython/gui_modules/ghelp.py

@@ -162,7 +162,7 @@ class SearchModuleWindow(wx.Panel):
                 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: