We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent de274b4 commit 1e61cadCopy full SHA for 1e61cad
src/app/qgspluginregistry.cpp
@@ -344,6 +344,12 @@ void QgsPluginRegistry::restoreSessionPlugins( QString thePluginDirString )
344
QStringList pluginList = mPythonUtils->pluginList();
345
QgsDebugMsg( "Loading python plugins" );
346
347
+ // make the plugin installer enabled by default:
348
+ if ( !mySettings.contains( "/PythonPlugins/plugin_installer" ) )
349
+ {
350
+ mySettings.setValue( "/PythonPlugins/plugin_installer", true );
351
+ }
352
+
353
for ( int i = 0; i < pluginList.size(); i++ )
354
{
355
QString packageName = pluginList[i];
0 commit comments