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 c40e096 commit ee025d9Copy full SHA for ee025d9
src/app/qgspluginmanager.cpp
@@ -250,7 +250,10 @@ void QgsPluginManager::getPluginDescriptions()
250
QString myPaths = settings.value( "plugins/searchPathsForPlugins", "" ).toString();
251
if ( !myPaths.isEmpty() )
252
{
253
- myPathList.append( myPaths.split( "|" ) );
+ foreach( QString path, myPaths.split( "|" ) )
254
+ {
255
+ myPathList.append( path );
256
+ }
257
}
258
259
for ( int j = 0; j < myPathList.size(); ++j )
0 commit comments