DroidFish: Fixed incorrect bounds calculation in SVG code.

This commit is contained in:
Peter Osterlund 2012-06-06 19:57:35 +00:00
parent 436579fe20
commit 9447c67ce7

View File

@ -995,7 +995,7 @@ public class SVGParser {
}
Float width = getFloatAttr("width", atts);
Float height = getFloatAttr("height", atts);
bounds = new RectF(x, y, x + width, y + width);
bounds = new RectF(x, y, x + width, y + height);
}
return;
}