commit
3e403ec72a
@ -1473,8 +1473,8 @@ static int nsvg__isCoordinate(const char* s)
|
|||||||
// optional sign
|
// optional sign
|
||||||
if (*s == '-' || *s == '+')
|
if (*s == '-' || *s == '+')
|
||||||
s++;
|
s++;
|
||||||
// must have at least one digit
|
// must have at least one digit, or start by a dot
|
||||||
return nsvg__isdigit(*s);
|
return (nsvg__isdigit(*s) || *s == '.');
|
||||||
}
|
}
|
||||||
|
|
||||||
static NSVGcoordinate nsvg__parseCoordinateRaw(const char* str)
|
static NSVGcoordinate nsvg__parseCoordinateRaw(const char* str)
|
||||||
|
Loading…
Reference in New Issue
Block a user