[GRASS-SVN] r65209 - grass/branches/releasebranch_7_0/gui/wxpython/web_services
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun May 10 03:08:29 PDT 2015
Author: martinl
Date: 2015-05-10 03:08:29 -0700 (Sun, 10 May 2015)
New Revision: 65209
Modified:
grass/branches/releasebranch_7_0/gui/wxpython/web_services/widgets.py
Log:
wxGUI/ws: fix dialog for wxPython 3.0
(merge r65207 from trunk)
Modified: grass/branches/releasebranch_7_0/gui/wxpython/web_services/widgets.py
===================================================================
--- grass/branches/releasebranch_7_0/gui/wxpython/web_services/widgets.py 2015-05-10 09:53:32 UTC (rev 65208)
+++ grass/branches/releasebranch_7_0/gui/wxpython/web_services/widgets.py 2015-05-10 10:08:29 UTC (rev 65209)
@@ -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