Navigation Menu

Skip to content

Commit

Permalink
Better option description for keeping fields
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondnijssen committed Aug 24, 2021
1 parent 9847c9f commit a958221
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 a958221

Please sign in to comment.