Skip to content

Commit

Permalink
add online QGIS User Guide as default help source (fix #16155)
Browse files Browse the repository at this point in the history
NOTE: to use online QGIS user Guide as help source we still need
some server-side tweaks: redirection to the testing docs for non-LTR
QGIS versions and redirection to english docs for not supported locales
  • Loading branch information
alexbruy committed Apr 27, 2017
1 parent 468fd97 commit 09d1263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsoptions.cpp
Expand Up @@ -267,7 +267,7 @@ QgsOptions::QgsOptions( QWidget *parent, Qt::WindowFlags fl, const QList<QgsOpti
}

//locations of the QGIS help
QStringList helpPathList = mSettings->value( QStringLiteral( "help/helpSearchPath" ) ).toStringList();
QStringList helpPathList = mSettings->value( QStringLiteral( "help/helpSearchPath" ), "http://docs.qgis.org/$qgis_short_version/$qgis_locale/docs/user_manual/" ).toStringList();
Q_FOREACH ( const QString &path, helpPathList )
{
QTreeWidgetItem *item = new QTreeWidgetItem();
Expand Down

0 comments on commit 09d1263

Please sign in to comment.