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