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 e2e3815 commit e96e147Copy full SHA for e96e147
src/app/qgspluginregistry.cpp
@@ -344,6 +344,16 @@ void QgsPluginRegistry::restoreSessionPlugins( QString thePluginDirString )
344
QStringList pluginList = mPythonUtils->pluginList();
345
QgsDebugMsg( "Loading python plugins" );
346
347
+ // make the plugin installer and the fTools enabled by default:
348
+ if ( !mySettings.contains( "/PythonPlugins/plugin_installer" ) )
349
+ {
350
+ mySettings.setValue( "/PythonPlugins/plugin_installer", true );
351
+ }
352
+ if ( !mySettings.contains( "/PythonPlugins/fTools" ) )
353
354
+ mySettings.setValue( "/PythonPlugins/fTools", true );
355
356
+
357
for ( int i = 0; i < pluginList.size(); i++ )
358
{
359
QString packageName = pluginList[i];
0 commit comments