[GRASS-SVN] r53829 - grass/branches/releasebranch_6_4/gui/wxpython/gui_core

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Nov 14 10:37:19 PST 2012


Author: martinl
Date: 2012-11-14 10:37:17 -0800 (Wed, 14 Nov 2012)
New Revision: 53829

Modified:
   grass/branches/releasebranch_6_4/gui/wxpython/gui_core/dialogs.py
Log:
wxGUI: don't use fullyqualified names when saving region
       (merge r53827 from trunk)


Modified: grass/branches/releasebranch_6_4/gui/wxpython/gui_core/dialogs.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/gui_core/dialogs.py	2012-11-14 18:35:10 UTC (rev 53828)
+++ grass/branches/releasebranch_6_4/gui/wxpython/gui_core/dialogs.py	2012-11-14 18:37:17 UTC (rev 53829)
@@ -459,7 +459,7 @@
         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()



More information about the grass-commit mailing list