[GRASS-SVN] r56886 - grass/trunk/display/d.vect

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Jun 23 11:39:23 PDT 2013


Author: mmetz
Date: 2013-06-23 11:39:23 -0700 (Sun, 23 Jun 2013)
New Revision: 56886

Modified:
   grass/trunk/display/d.vect/main.c
Log:
d.vect: more user-friendly

Modified: grass/trunk/display/d.vect/main.c
===================================================================
--- grass/trunk/display/d.vect/main.c	2013-06-23 11:16:23 UTC (rev 56885)
+++ grass/trunk/display/d.vect/main.c	2013-06-23 18:39:23 UTC (rev 56886)
@@ -77,6 +77,7 @@
     map_opt = G_define_standard_option(G_OPT_V_MAP);
 
     field_opt = G_define_standard_option(G_OPT_V_FIELD_ALL);
+    field_opt->answer = "1";
     field_opt->guisection = _("Selection");
 
     display_opt = G_define_option();
@@ -100,7 +101,7 @@
     
     /* Query */
     type_opt = G_define_standard_option(G_OPT_V_TYPE);
-    type_opt->answer = "point,line,boundary,centroid,area,face";
+    type_opt->answer = "point,line,area,face";
     type_opt->options = "point,line,boundary,centroid,area,face";
     type_opt->guisection = _("Selection");
     



More information about the grass-commit mailing list