[GRASS-SVN] r55109 - grass/trunk/gui/wxpython/gui_core
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Feb 18 02:22:58 PST 2013
Author: hamish
Date: 2013-02-18 02:22:58 -0800 (Mon, 18 Feb 2013)
New Revision: 55109
Modified:
grass/trunk/gui/wxpython/gui_core/preferences.py
Log:
explain what the Projection tab does (for users who are used to on-the-fly reprojection GISs and might expect that). merge from devbr6
Modified: grass/trunk/gui/wxpython/gui_core/preferences.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/preferences.py 2013-02-18 10:19:36 UTC (rev 55108)
+++ grass/trunk/gui/wxpython/gui_core/preferences.py 2013-02-18 10:22:58 UTC (rev 55109)
@@ -1208,8 +1208,23 @@
gridSizer = wx.GridBagSizer (hgap = 3, vgap = 3)
+ # note + button
+ row = 0
+ note0 = wx.StaticText(parent = panel, id = wx.ID_ANY,
+ label = _("\nNote: This only controls the coordinates "
+ "displayed in the lower-left of the Map "
+ "Display\nwindow's status bar. It is purely "
+ "cosmetic and does not affect the working "
+ "location's\nprojection in any way. You will "
+ "need to enable the Projection check box in "
+ "the drop-down\nmenu located at the bottom "
+ "of the Map Display window."))
+ gridSizer.Add(item = note0,
+ span = (1, 2),
+ pos = (row, 0))
+
# epsg
- row = 0
+ row += 1
label = wx.StaticText(parent = panel, id = wx.ID_ANY,
label = _("EPSG code:"))
epsgCode = wx.ComboBox(parent = panel, id = wx.ID_ANY,
@@ -1224,7 +1239,7 @@
flag = wx.ALIGN_CENTER_VERTICAL)
gridSizer.Add(item = epsgCode,
pos = (row, 1), span = (1, 2))
-
+
# proj
row += 1
label = wx.StaticText(parent = panel, id = wx.ID_ANY,
More information about the grass-commit
mailing list