[GRASS-SVN] r48292 - grass/trunk/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Sep 14 01:04:43 EDT 2011


Author: cmbarton
Date: 2011-09-13 22:04:43 -0700 (Tue, 13 Sep 2011)
New Revision: 48292

Modified:
   grass/trunk/gui/wxpython/gui_modules/nviz_tools.py
Log:
Changing cutting plane horizontal sliders back to x and y

Modified: grass/trunk/gui/wxpython/gui_modules/nviz_tools.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/nviz_tools.py	2011-09-14 01:16:45 UTC (rev 48291)
+++ grass/trunk/gui/wxpython/gui_modules/nviz_tools.py	2011-09-14 05:04:43 UTC (rev 48292)
@@ -893,10 +893,10 @@
         
         gridSizer = wx.GridBagSizer(hgap = 5, vgap = 5)
         
-        # cutting plane horizontal position
+        # cutting plane horizontal x position
         self.win['cplane']['position'] = {}
         gridSizer.Add(item = wx.StaticText(parent = panel, id = wx.ID_ANY,
-                                         label = _("Horizontal:")),
+                                         label = _("Horizontal X:")),
                       pos = (0, 0), flag = wx.ALIGN_CENTER_VERTICAL)
         self._createControl(panel, data = self.win['cplane']['position'], name = 'x', size = 250,
                             range = (-1000, 1000), sliderHor = True, floatSlider = True,
@@ -909,9 +909,9 @@
                       pos = (0, 2),
                       flag = wx.ALIGN_CENTER)   
         
-        # cutting plane rotation point
+        # cutting plane horizontal y position
         gridSizer.Add(item = wx.StaticText(parent = panel, id = wx.ID_ANY,
-                                         label = _("Rotation pt.:")),
+                                         label = _("Horizontal Y:")),
                       pos = (1, 0), flag = wx.ALIGN_CENTER_VERTICAL)
         self._createControl(panel, data = self.win['cplane']['position'], name = 'y', size = 250,
                             range = (-1000, 1000), sliderHor = True, floatSlider = True,



More information about the grass-commit mailing list