Misaligned patterns on SVG import
When opening an SVG file, pattern fills are incorrectly offset on both x and y axis.
An inconvenient workaround is to reapply the pattern (Select shape, select pattern swatch). This will then position the pattern correctly.
It would be great if the pattern was correctly positioned on file load.
Tested on Windows 10. Illustrator 23.0.6 64bit
See attached PNG for example.
pattern-test.svg used in the screenshot:
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" viewBox="0 0 50 50">
<defs>
<pattern id="New_Pattern" data-name="New Pattern" width="10" height="10" viewBox="0 0 10 10" patternUnits="userSpaceOnUse">
<rect width="10" height="10" fill="blue"/>
<circle cx="5" cy="5" r="5" fill="red" />
</pattern>
</defs>
<rect x="0" y="0" width="50" height="50" fill="url(#New_Pattern)" />
</svg>