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

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Dec 4 13:40:19 EST 2008


Author: martinl
Date: 2008-12-04 13:40:19 -0500 (Thu, 04 Dec 2008)
New Revision: 34726

Modified:
   grass/trunk/gui/wxpython/gui_modules/menudata.py
Log:
wxGUI: add r.colors.stddev and v.colors to the menu
       (merge from devbr6, r34725)


Modified: grass/trunk/gui/wxpython/gui_modules/menudata.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/menudata.py	2008-12-04 18:38:31 UTC (rev 34725)
+++ grass/trunk/gui/wxpython/gui_modules/menudata.py	2008-12-04 18:40:19 UTC (rev 34726)
@@ -630,6 +630,11 @@
                                  "self.OnMenuCmd",
                                  "r.colors"),
 
+                                (_("Color tables (stddev)"),
+                                 _("Set color rules based on stddev from a map's mean value."),
+                                 "self.OnMenuCmd",
+                                 "r.colors.stddev"),
+
                                 (_("Color rules"),
                                  _("Set colors interactively by entering color rules"),
                                  "self.RulesCmd",
@@ -1320,12 +1325,20 @@
                                  "v.proj"),
                                 )
                          ),
-                        ("","","", ""),
+                        
+                        (_("Manage colors"), (
 
-                        (_("Manage colors"),
-                         _("Set colors interactively by entering color rules"),
-                         "self.RulesCmd",
-                         "vcolors"),
+                                (_("Color tables"),
+                                 _("Set color rules for features in a vector using a numeric attribute column."),
+                                 "self.OnMenuCmd",
+                                 "v.colors"),
+
+                                (_("Color rules"),
+                                 _("Set colors interactively by entering color rules"),
+                                 "self.RulesCmd",
+                                 "vcolors"),
+                                ),
+                         ),
                         ("","","", ""),
 
                         (_("Query with attributes"),



More information about the grass-commit mailing list