Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #44823 from raymondnijssen/polygonize_add_fields
Browse files Browse the repository at this point in the history
Make more clear that these fields will not contain data from the input layer, because the polygons are often constructed from multiple lines. Fixes #44779
  • Loading branch information
m-kuhn committed Aug 24, 2021
2 parents 9847c9f + a958221 commit 9258369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmpolygonize.cpp
Expand Up @@ -55,7 +55,7 @@ void QgsPolygonizeAlgorithm::initAlgorithm( const QVariantMap & )
addParameter( new QgsProcessingParameterFeatureSource( QStringLiteral( "INPUT" ),
QObject::tr( "Input layer" ), QList< int >() << QgsProcessing::TypeVectorLine ) );
addParameter( new QgsProcessingParameterBoolean( QStringLiteral( "KEEP_FIELDS" ),
QObject::tr( "Keep fields from the input layer" ), false, true ) );
QObject::tr( "Keep table structure of line layer" ), false, true ) );
addParameter( new QgsProcessingParameterFeatureSink( QStringLiteral( "OUTPUT" ),
QObject::tr( "Polygons" ), QgsProcessing::TypeVectorPolygon ) );
addOutput( new QgsProcessingOutputNumber( QStringLiteral( "NUM_POLYGONS" ), QObject::tr( "Number of polygons" ) ) );
Expand Down

0 comments on commit 9258369

Please sign in to comment.