We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1225203 commit 3cd37beCopy full SHA for 3cd37be
src/app/qgsoptions.cpp
@@ -1748,9 +1748,10 @@ void QgsOptions::on_mBtnRemovePluginPath_clicked()
1748
void QgsOptions::on_mBtnAddHelpPath_clicked()
1749
{
1750
QTreeWidgetItem *item = new QTreeWidgetItem();
1751
- item->setText( 0, QString() );
+ item->setText( 0, QStringLiteral( "HELP_LOCATION" ) );
1752
item->setFlags( Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemIsEditable );
1753
mHelpPathTreeWidget->addTopLevelItem( item );
1754
+ mHelpPathTreeWidget->setCurrentItem( item );
1755
}
1756
1757
void QgsOptions::on_mBtnRemoveHelpPath_clicked()
0 commit comments