We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e276c49 commit d211b16Copy full SHA for d211b16
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