mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-26 00:08:20 -04:00
ignore empty SVG path (fix #15891)
This commit is contained in:
parent
1f8c311158
commit
6f759a87c9
@ -88,7 +88,10 @@ void QgsSvgSelectorLoader::loadPath( const QString &path )
|
||||
if ( mCanceled )
|
||||
return;
|
||||
|
||||
loadPath( svgPath );
|
||||
if ( !svgPath.isEmpty() )
|
||||
{
|
||||
loadPath( svgPath );
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user