Skip to content
Permalink
Browse files
[processing][help] use algorithm id as an anchor for help pages
  • Loading branch information
alexbruy committed Feb 24, 2018
1 parent f35745f commit 598b8a9
Showing 1 changed file with 1 addition and 1 deletion.
@@ -233,7 +233,7 @@ void QgsProcessingAlgorithmDialogBase::openHelp()
QUrl algHelp = mAlgorithm->helpUrl();
if ( algHelp.isEmpty() )
{
algHelp = QgsHelp::helpUrl( QStringLiteral( "processing_algs/%1/%2.html#%3" ).arg( mAlgorithm->provider()->helpId(), mAlgorithm->groupId(), mAlgorithm->name() ) );
algHelp = QgsHelp::helpUrl( QStringLiteral( "processing_algs/%1/%2.html#%3" ).arg( mAlgorithm->provider()->helpId(), mAlgorithm->groupId(), mAlgorithm->id().replace( ":", "" ) ) );
}

if ( !algHelp.isEmpty() )

0 comments on commit 598b8a9

Please sign in to comment.