Skip to content

Commit 09d1263

Browse files
committedApr 27, 2017
add online QGIS User Guide as default help source (fix #16155)
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
1 parent 468fd97 commit 09d1263

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgsoptions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ QgsOptions::QgsOptions( QWidget *parent, Qt::WindowFlags fl, const QList<QgsOpti
267267
}
268268

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

0 commit comments

Comments
 (0)
Please sign in to comment.