[GRASS-SVN] r47377 - grass/trunk/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Aug 3 11:09:12 EDT 2011


Author: cmbarton
Date: 2011-08-03 08:09:11 -0700 (Wed, 03 Aug 2011)
New Revision: 47377

Modified:
   grass/trunk/gui/wxpython/gui_modules/gselect.py
Log:
Fixing multiple selection bug that should have been fixed in r47033

Modified: grass/trunk/gui/wxpython/gui_modules/gselect.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/gselect.py	2011-08-03 14:35:50 UTC (rev 47376)
+++ grass/trunk/gui/wxpython/gui_modules/gselect.py	2011-08-03 15:09:11 UTC (rev 47377)
@@ -245,7 +245,7 @@
         if not root:
             return
         found = self.FindItem(root, value)
-        
+        self.value = self.GetCombo().GetValue().strip(',').split(',')
         if found:
             self.value.append(found)
             self.seltree.SelectItem(found)



More information about the grass-commit mailing list