Browse Source

wxGUI: use `g.mapsets operation=set` (see https://trac.osgeo.org/grass/changeset/51471)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@51472 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 13 years ago
parent
commit
33e19cafb0
1 changed files with 2 additions and 1 deletions
  1. 2 1
      gui/wxpython/lmgr/frame.py

+ 2 - 1
gui/wxpython/lmgr/frame.py

@@ -413,7 +413,8 @@ class GMFrame(wx.Frame):
             ms = dlg.GetMapsets()
             RunCommand('g.mapsets',
                        parent = self,
-                       mapset = '%s' % ','.join(ms))
+                       mapset = '%s' % ','.join(ms),
+                       operation = 'set')
         
     def OnCBPageChanged(self, event):
         """!Page in notebook (display) changed"""