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

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Nov 30 13:57:17 EST 2008


Author: martinl
Date: 2008-11-30 13:57:17 -0500 (Sun, 30 Nov 2008)
New Revision: 34633

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_modules/menuform.py
Log:
wxGUI: fix multi column option

Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/menuform.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/menuform.py	2008-11-30 15:29:08 UTC (rev 34632)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/menuform.py	2008-11-30 18:57:17 UTC (rev 34633)
@@ -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