We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb39d23 commit 0b149f5Copy full SHA for 0b149f5
src/core/processing/models/qgsprocessingmodelalgorithm.cpp
@@ -769,6 +769,9 @@ void QgsProcessingModelAlgorithm::updateDestinationParameters()
769
continue;
770
771
std::unique_ptr< QgsProcessingParameterDefinition > param( source->clone() );
772
+ // Even if an output was hidden in a child algorithm, we want to show it here for the final
773
+ // outputs.
774
+ param->setFlags( param->flags() & ~QgsProcessingParameterDefinition::FlagHidden );
775
param->setName( outputIt->childId() + ':' + outputIt->name() );
776
param->setDescription( outputIt->description() );
777
addParameter( param.release() );
0 commit comments