зеркало из https://github.com/SixLabors/Svg.git
negative only alowed as first char
This commit is contained in:
Родитель
aafea14480
Коммит
6794e0103b
|
@ -166,7 +166,7 @@ namespace SixLabors.Svg.Dom
|
|||
}
|
||||
// we can skip 'whitespace'
|
||||
}
|
||||
if (char.IsDigit(str[position]) || str[position] == '-' || str[position] == '.')
|
||||
if (char.IsDigit(str[position]) || (str[position] == '-' && floatStart == 0) || str[position] == '.')
|
||||
{
|
||||
if (floatStart == 0) { floatStart = position; }
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче