Skip to content

Commit a958221

Browse files
committedAug 24, 2021
Better option description for keeping fields
1 parent 9847c9f commit a958221

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/analysis/processing/qgsalgorithmpolygonize.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void QgsPolygonizeAlgorithm::initAlgorithm( const QVariantMap & )
5555
addParameter( new QgsProcessingParameterFeatureSource( QStringLiteral( "INPUT" ),
5656
QObject::tr( "Input layer" ), QList< int >() << QgsProcessing::TypeVectorLine ) );
5757
addParameter( new QgsProcessingParameterBoolean( QStringLiteral( "KEEP_FIELDS" ),
58-
QObject::tr( "Keep fields from the input layer" ), false, true ) );
58+
QObject::tr( "Keep table structure of line layer" ), false, true ) );
5959
addParameter( new QgsProcessingParameterFeatureSink( QStringLiteral( "OUTPUT" ),
6060
QObject::tr( "Polygons" ), QgsProcessing::TypeVectorPolygon ) );
6161
addOutput( new QgsProcessingOutputNumber( QStringLiteral( "NUM_POLYGONS" ), QObject::tr( "Number of polygons" ) ) );

0 commit comments

Comments
 (0)
Please sign in to comment.