Closed
Description
Svg's rendered in an SVGView using ScaleAspectFit are not scaled properly if the SVG is not approximately a square.
It looks like the svgNode.bounds() is returning a rect that is larger than the svg width and height, which then throws off the scaleAspectFit calculations. For example, an svg with a width of 320 and height of 700 (a tall rectangle) might have the svgNode.bounds() return a rect that is closer to a width of 700 and a height of 700 (a Square).
The algorithm seems to be correct as I commented out the two lines in the render method that calculates the svgWidth and svgHeight based on the node bounds, and replaced the values with the actual width and height of my test svg's and everything worked properly.