Merge pull request #240 from mono/revert-239-master

Revert "SKSvg - Fixed SVG not loaded when viewport / viewbox not specified"
This commit is contained in:
Matthew Leibowitz 2017-02-11 12:35:32 -06:00 коммит произвёл GitHub
Родитель fa7a2a6b5d 15e2133db6
Коммит aafe6a79fb
1 изменённых файлов: 0 добавлений и 9 удалений

Просмотреть файл

@ -93,15 +93,6 @@ namespace SkiaSharp
{
ViewBox = ReadRectangle(viewBoxA.Value);
}
else
{
var widthA = svg.Attribute("width");
var heightA = svg.Attribute("height");
var width = ReadNumber(widthA);
var height = ReadNumber(heightA);
var size = new SKSize(width, height);
ViewBox = SKRect.Create(size);
}
if (CanvasSize.IsEmpty)
{