[GRASS-SVN] r57950 - grass/trunk/gui/wxpython/gui_core

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Oct 6 16:31:36 PDT 2013


Author: annakrat
Date: 2013-10-06 16:31:36 -0700 (Sun, 06 Oct 2013)
New Revision: 57950

Modified:
   grass/trunk/gui/wxpython/gui_core/forms.py
Log:
wxGUI: fix #2091, #1808, #1814

Modified: grass/trunk/gui/wxpython/gui_core/forms.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/forms.py	2013-10-06 21:02:48 UTC (rev 57949)
+++ grass/trunk/gui/wxpython/gui_core/forms.py	2013-10-06 23:31:36 UTC (rev 57950)
@@ -2316,9 +2316,10 @@
                                        { 'cmd' : cmd[0],
                                          'key' : key })
                         continue
+                    multiple = element['multiple']
                     element = element['element']
-                    
-                    if element in ['cell', 'vector']:
+                    # do we need to find mapset for each of multiple maps?
+                    if element in ['cell', 'vector'] and not multiple:
                         # mapname -> mapname at mapset
                         try:
                             name, mapset = value.split('@')



More information about the grass-commit mailing list