[GRASS-SVN] r38049 - grass-addons/vector/v.krige
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Jun 24 08:06:07 EDT 2009
Author: martinl
Date: 2009-06-24 08:06:07 -0400 (Wed, 24 Jun 2009)
New Revision: 38049
Modified:
grass-addons/vector/v.krige/v.krige.py
Log:
do not update list of vectors on popup
Modified: grass-addons/vector/v.krige/v.krige.py
===================================================================
--- grass-addons/vector/v.krige/v.krige.py 2009-06-24 12:05:03 UTC (rev 38048)
+++ grass-addons/vector/v.krige/v.krige.py 2009-06-24 12:06:07 UTC (rev 38049)
@@ -71,7 +71,10 @@
flexSizer.Add(item = wx.StaticText(self, id=wx.ID_ANY, label=_("Point dataset:")),
flag = wx.ALIGN_CENTER_VERTICAL)
self.InputDataMap = gselect.VectorSelect(parent = self,
- ftype = 'point')
+ ftype = 'points',
+ updateOnPopup = False)
+ wx.CallAfter(self.InputDataMap.GetElementList)
+
flexSizer.Add(item = self.InputDataMap)
flexSizer.Add(item = wx.StaticText(self, id=wx.ID_ANY, label=_("Column:")),
More information about the grass-commit
mailing list