[GRASS-SVN] r53828 - grass/branches/develbranch_6/gui/wxpython/gui_core
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Nov 14 10:35:12 PST 2012
Author: martinl
Date: 2012-11-14 10:35:10 -0800 (Wed, 14 Nov 2012)
New Revision: 53828
Modified:
grass/branches/develbranch_6/gui/wxpython/gui_core/dialogs.py
Log:
wxGUI: don't use fullyqualified names when saving region
(merge r53827 from trunk)
Modified: grass/branches/develbranch_6/gui/wxpython/gui_core/dialogs.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_core/dialogs.py 2012-11-14 18:33:10 UTC (rev 53827)
+++ grass/branches/develbranch_6/gui/wxpython/gui_core/dialogs.py 2012-11-14 18:35:10 UTC (rev 53828)
@@ -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