ignore empty SVG path (fix #15891)

This commit is contained in:
Alexander Bruy 2017-05-01 16:07:27 +03:00
parent 1f8c311158
commit 6f759a87c9

View File

@ -88,7 +88,10 @@ void QgsSvgSelectorLoader::loadPath( const QString &path )
if ( mCanceled )
return;
loadPath( svgPath );
if ( !svgPath.isEmpty() )
{
loadPath( svgPath );
}
}
}
else