NanoSVG: parse 'class' attribute before 'style'.
This commit is contained in:
parent
c9d6e79d2d
commit
64a64f5216
|
@ -2667,13 +2667,25 @@ static void nsvg__parsePath( NSVGparser* p, const char** attr )
|
||||||
int i;
|
int i;
|
||||||
char item[64];
|
char item[64];
|
||||||
|
|
||||||
|
for( i = 0; attr[i]; i += 2 )
|
||||||
|
{
|
||||||
|
if( strcmp( attr[i], "class" ) == 0 )
|
||||||
|
{
|
||||||
|
tmp[0] = attr[i];
|
||||||
|
tmp[1] = attr[i + 1];
|
||||||
|
tmp[2] = 0;
|
||||||
|
tmp[3] = 0;
|
||||||
|
nsvg__parseAttribs( p, tmp );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
for( i = 0; attr[i]; i += 2 )
|
for( i = 0; attr[i]; i += 2 )
|
||||||
{
|
{
|
||||||
if( strcmp( attr[i], "d" ) == 0 )
|
if( strcmp( attr[i], "d" ) == 0 )
|
||||||
{
|
{
|
||||||
s = attr[i + 1];
|
s = attr[i + 1];
|
||||||
}
|
}
|
||||||
else
|
else if( strcmp( attr[i], "class" ) != 0 )
|
||||||
{
|
{
|
||||||
tmp[0] = attr[i];
|
tmp[0] = attr[i];
|
||||||
tmp[1] = attr[i + 1];
|
tmp[1] = attr[i + 1];
|
||||||
|
|
Loading…
Reference in New Issue