Browse Source

wxGUI: wx.RA_SPECIFY_COLS is invalid flag for wx.Choice

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@54873 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 12 years ago
parent
commit
05cecb788b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/wxpython/web_services/widgets.py

+ 1 - 1
gui/wxpython/web_services/widgets.py

@@ -158,7 +158,7 @@ class WSPanel(wx.Panel):
         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)