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

svn_grass at osgeo.org svn_grass at osgeo.org
Sun May 10 02:51:10 PDT 2015


Author: martinl
Date: 2015-05-10 02:51:10 -0700 (Sun, 10 May 2015)
New Revision: 65207

Modified:
   grass/trunk/gui/wxpython/web_services/widgets.py
Log:
wxGUI/ws: fix dialog for wxPython 3.0

Modified: grass/trunk/gui/wxpython/web_services/widgets.py
===================================================================
--- grass/trunk/gui/wxpython/web_services/widgets.py	2015-05-10 09:13:20 UTC (rev 65206)
+++ grass/trunk/gui/wxpython/web_services/widgets.py	2015-05-10 09:51:10 UTC (rev 65207)
@@ -344,19 +344,20 @@
 
         if self.params['urlparams']:
             gridSizer  =  wx.GridBagSizer (hgap = 3, vgap = 3)
-            gridSizer.AddGrowableCol(1)
-
+            
             row = 0
             gridSizer.Add(labels['urlparams'],
                           flag = wx.ALIGN_LEFT |
                           wx.ALIGN_CENTER_VERTICAL,
                           pos = (row, 0))
-
+            
             gridSizer.Add(item = self.params['urlparams'],
                           flag = wx.ALIGN_RIGHT |
                           wx.ALIGN_CENTER_VERTICAL | wx.EXPAND,
                           pos = (row, 1))
-
+            
+            gridSizer.AddGrowableCol(1)
+            
             border.Add(item = gridSizer,
                        flag = wx.LEFT | wx.RIGHT | wx.TOP | wx.EXPAND,
                        border = 5)



More information about the grass-commit mailing list