Przeglądaj źródła

wxGUI: don't use fullyqualified names when saving region

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@53827 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 12 lat temu
rodzic
commit
6a0d813ab1
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      gui/wxpython/gui_core/dialogs.py

+ 1 - 1
gui/wxpython/gui_core/dialogs.py

@@ -520,7 +520,7 @@ class SavedRegion(wx.Dialog):
         elif loadsave == 'save':
             label.SetLabel(_("Save region:"))
             selection = Select(parent = self, id = wx.ID_ANY, size = globalvar.DIALOG_GSELECT_SIZE,
-                               type = 'windows', mapsets  =  [grass.gisenv()['MAPSET']])
+                               type = 'windows', mapsets = [grass.gisenv()['MAPSET']], fullyQualified = False)
         
         box.Add(item = selection, proportion = 0, flag = wx.ALIGN_CENTRE | wx.ALL, border = 5)
         selection.SetFocus()