[GRASS-SVN] r47031 - grass/branches/develbranch_6/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jul 6 22:09:03 EDT 2011


Author: cmbarton
Date: 2011-07-06 19:09:03 -0700 (Wed, 06 Jul 2011)
New Revision: 47031

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_modules/gselect.py
Log:
Fixed problem with multiple selections, Trac #1398

Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/gselect.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/gselect.py	2011-07-06 20:33:48 UTC (rev 47030)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/gselect.py	2011-07-07 02:09:03 UTC (rev 47031)
@@ -233,6 +233,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