Browse Source

wxGUI: fix opening extension window

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@53894 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová 12 years ago
parent
commit
d650f92fe7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/wxpython/modules/extensions.py

+ 1 - 1
gui/wxpython/modules/extensions.py

@@ -58,7 +58,7 @@ class InstallExtensionWindow(wx.Frame):
                                     label = _("Fetch full info including description and keywords"))
         self.fullDesc.SetValue(True)
         
-        self.search = SearchModuleWindow(parent = self.panel)
+        self.search = SearchModuleWindow(parent = self.panel, modulesData = None)
         self.search.SetSelection(0) 
         
         self.tree   = ExtensionTree(parent = self.panel, log = parent.GetLogWindow())