[GRASS-SVN] r68489 - grass/trunk/gui/wxpython/location_wizard
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon May 23 00:03:08 PDT 2016
Author: martinl
Date: 2016-05-23 00:03:08 -0700 (Mon, 23 May 2016)
New Revision: 68489
Modified:
grass/trunk/gui/wxpython/location_wizard/wizard.py
Log:
wxGUI/location wizard: reorder methods to simple and advanced
Modified: grass/trunk/gui/wxpython/location_wizard/wizard.py
===================================================================
--- grass/trunk/gui/wxpython/location_wizard/wizard.py 2016-05-22 20:47:00 UTC (rev 68488)
+++ grass/trunk/gui/wxpython/location_wizard/wizard.py 2016-05-23 07:03:08 UTC (rev 68489)
@@ -276,6 +276,8 @@
# layout
self.sizer.SetVGap(10)
+ self.sizer.Add(item=wx.StaticText(parent=self, label=_("Simple methods:")),
+ flag=wx.ALIGN_LEFT, pos=(1, 1))
self.sizer.Add(item=self.radioEpsg,
flag=wx.ALIGN_LEFT, pos=(2, 1))
#self.sizer.Add(item=self.radioIau,
@@ -284,12 +286,14 @@
flag=wx.ALIGN_LEFT, pos=(3, 1))
self.sizer.Add(item=self.radioWkt,
flag=wx.ALIGN_LEFT, pos=(4, 1))
+ self.sizer.Add(item=self.radioXy,
+ flag=wx.ALIGN_LEFT, pos=(5, 1))
+ self.sizer.Add(item=wx.StaticText(parent=self, label=_("Advanced methods:")),
+ flag=wx.ALIGN_LEFT, pos=(6, 1))
self.sizer.Add(item=self.radioSrs,
- flag=wx.ALIGN_LEFT, pos=(5, 1))
+ flag=wx.ALIGN_LEFT, pos=(7, 1))
self.sizer.Add(item=self.radioProj,
- flag=wx.ALIGN_LEFT, pos=(6, 1))
- self.sizer.Add(item=self.radioXy,
- flag=wx.ALIGN_LEFT, pos=(7, 1))
+ flag=wx.ALIGN_LEFT, pos=(8, 1))
self.sizer.AddGrowableCol(1)
# bindings
More information about the grass-commit
mailing list