[GRASS-SVN] r54873 - grass/trunk/gui/wxpython/web_services

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Feb 3 08:01:45 PST 2013


Author: martinl
Date: 2013-02-03 08:01:44 -0800 (Sun, 03 Feb 2013)
New Revision: 54873

Modified:
   grass/trunk/gui/wxpython/web_services/widgets.py
Log:
wxGUI: wx.RA_SPECIFY_COLS is invalid flag for wx.Choice


Modified: grass/trunk/gui/wxpython/web_services/widgets.py
===================================================================
--- grass/trunk/gui/wxpython/web_services/widgets.py	2013-02-03 15:08:42 UTC (rev 54872)
+++ grass/trunk/gui/wxpython/web_services/widgets.py	2013-02-03 16:01:44 UTC (rev 54873)
@@ -158,7 +158,7 @@
         self.params['srs'] = None
         if 'srs' not in  self.drv_props['ignored_params']:
             projText = wx.StaticText(parent = self.req_page_panel, id = wx.ID_ANY, label = _("Source projection:"))
-            self.params['srs'] =  wx.Choice(parent = self.req_page_panel, id = wx.ID_ANY, style = wx.RA_SPECIFY_COLS)
+            self.params['srs'] =  wx.Choice(parent = self.req_page_panel, id = wx.ID_ANY)
         
         self.list.Bind(wx.EVT_TREE_SEL_CHANGED, self.OnListSelChanged)
         



More information about the grass-commit mailing list