Skip to content

Commit

Permalink
[GRASS] limit number of cleaning cycles
Browse files Browse the repository at this point in the history
  • Loading branch information
blazek committed Sep 27, 2015
1 parent 212a924 commit 3c7d74f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/grass/qgis.v.in.cpp
Expand Up @@ -335,7 +335,7 @@ int main( int argc, char **argv )
Vect_break_polygons( map, GV_BOUNDARY, NULL );
G_message( "Removing duplicates" );
Vect_remove_duplicates( map, GV_BOUNDARY | GV_CENTROID, NULL );
while ( true )
for ( int i = 0; i < 3; i++ )
{
G_message( "Breaking lines" );
Vect_break_lines( map, GV_BOUNDARY, NULL );
Expand Down

0 comments on commit 3c7d74f

Please sign in to comment.