mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-10 00:05:25 -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 )
|
if ( mCanceled )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
loadPath( svgPath );
|
if ( !svgPath.isEmpty() )
|
||||||
|
{
|
||||||
|
loadPath( svgPath );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user