mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-27 00:33:48 -05:00
[processing][help] use helpId() when constructing anchor name (follow up 598b8a9c)
This commit is contained in:
parent
598b8a9c41
commit
725f36064c
@ -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->id().replace( ":", "" ) ) );
|
||||
algHelp = QgsHelp::helpUrl( QStringLiteral( "processing_algs/%1/%2.html#%3" ).arg( mAlgorithm->provider()->helpId(), mAlgorithm->groupId(), QStringLiteral( "%1%2" ).arg( mAlgorithm->provider()->helpId() ).arg( mAlgorithm->name() ) ) );
|
||||
}
|
||||
|
||||
if ( !algHelp.isEmpty() )
|
||||
|
Loading…
x
Reference in New Issue
Block a user