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

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Nov 30 14:12:20 EST 2008


Author: martinl
Date: 2008-11-30 14:12:20 -0500 (Sun, 30 Nov 2008)
New Revision: 34635

Modified:
   grass/trunk/gui/wxpython/gui_modules/menuform.py
Log:
wxGUI: fix multi column option
       (merge from devbr6, r34633)


Modified: grass/trunk/gui/wxpython/gui_modules/menuform.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/menuform.py	2008-11-30 19:11:48 UTC (rev 34634)
+++ grass/trunk/gui/wxpython/gui_modules/menuform.py	2008-11-30 19:12:20 UTC (rev 34635)
@@ -1187,6 +1187,7 @@
                     if p.get('multiple', 'no') == 'yes':
                         win = wx.TextCtrl(parent=which_panel, value = p.get('default',''),
                                           size=globalvar.DIALOG_TEXTCTRL_SIZE)
+                        win.Bind(wx.EVT_TEXT, self.OnSetValue)
                     else:
                         if p.get('prompt', '') in ('layer',
                                                    'layer_all'):



More information about the grass-commit mailing list