Sfoglia il codice sorgente

d.vect: remove boundary from default options (boundaries are render
when area type is given)
It can speed up rendering maps with larger number of areas
--
This line, and those below, will beignored--

M display/d.vect/main.c


git-svn-id: https://svn.osgeo.org/grass/grass/trunk@65567 15284696-431f-4ddb-bdfa-cd5b030d7da7

Martin Landa 10 anni fa
parent
commit
e9d825114d
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      display/d.vect/main.c

+ 1 - 1
display/d.vect/main.c

@@ -100,7 +100,7 @@ int main(int argc, char **argv)
     
     /* Query */
     type_opt = G_define_standard_option(G_OPT_V_TYPE);
-    type_opt->answer = "point,line,boundary,area,face";
+    type_opt->answer = "point,line,area,face";
     type_opt->options = "point,line,boundary,centroid,area,face";
     type_opt->guisection = _("Selection");