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

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Jan 13 05:12:05 PST 2014


Author: martinl
Date: 2014-01-13 05:12:05 -0800 (Mon, 13 Jan 2014)
New Revision: 58701

Modified:
   grass/trunk/gui/wxpython/gui_core/forms.py
Log:
wxGUI: another fix related to MapsetSelect (changed to wx.combo.ComboCtrl)

Modified: grass/trunk/gui/wxpython/gui_core/forms.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/forms.py	2014-01-13 13:05:08 UTC (rev 58700)
+++ grass/trunk/gui/wxpython/gui_core/forms.py	2014-01-13 13:12:05 UTC (rev 58701)
@@ -1390,7 +1390,7 @@
                                                        value = value, new = new,
                                                        multiple = p.get('multiple', False))
                             textWin = win.GetTextCtrl()
-                            p['wxId'] = [ win.GetId(), ]
+                            p['wxId'] = [ textWin.GetId(), win.GetId() ]
                             
                             textWin.Bind(wx.EVT_TEXT, self.OnSetValue)
                             win.Bind(wx.EVT_TEXT, self.OnUpdateSelection)



More information about the grass-commit mailing list