[GRASS-SVN] r47032 - grass/branches/releasebranch_6_4/gui/wxpython/gui_modules

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


Author: cmbarton
Date: 2011-07-06 19:14:14 -0700 (Wed, 06 Jul 2011)
New Revision: 47032

Modified:
   grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/gselect.py
Log:
Fixed multi selection bug Track #1398. Backported from devbranch 6.5 r47031

Modified: grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/gselect.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/gselect.py	2011-07-07 02:09:03 UTC (rev 47031)
+++ grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/gselect.py	2011-07-07 02:14:14 UTC (rev 47032)
@@ -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