Skip to content

Commit 6f1b27e

Browse files
committedNov 28, 2012
fix #6777
1 parent 84c709f commit 6f1b27e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/symbology-ng/qgsmarkersymbollayerv2.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@ QString QgsSvgMarkerSymbolLayerV2::symbolNameToPath( QString name )
844844

845845
// or it might be an url...
846846
QUrl url( name );
847-
if ( url.isValid() )
847+
if ( url.isValid() && !url.scheme().isEmpty() )
848848
{
849849
if ( url.scheme().compare( "file", Qt::CaseInsensitive ) == 0 )
850850
{

0 commit comments

Comments
 (0)
Please sign in to comment.