Skip to content

Commit

Permalink
don't restrict create grid algorithm output for use as inputs to line
Browse files Browse the repository at this point in the history
and point parameters (fix #45867)
  • Loading branch information
alexbruy authored and nyalldawson committed Nov 6, 2021
1 parent 19a08af commit cd6c000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmgrid.cpp
Expand Up @@ -64,7 +64,7 @@ void QgsGridAlgorithm::initAlgorithm( const QVariantMap & )

addParameter( new QgsProcessingParameterCrs( QStringLiteral( "CRS" ), QObject::tr( "Grid CRS" ), QStringLiteral( "ProjectCrs" ) ) );

addParameter( new QgsProcessingParameterFeatureSink( QStringLiteral( "OUTPUT" ), QObject::tr( "Grid" ), QgsProcessing::TypeVectorPolygon ) );
addParameter( new QgsProcessingParameterFeatureSink( QStringLiteral( "OUTPUT" ), QObject::tr( "Grid" ), QgsProcessing::TypeVectorAnyGeometry ) );
}

QString QgsGridAlgorithm::shortHelpString() const
Expand Down

0 comments on commit cd6c000

Please sign in to comment.