We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, when exporting to SVG we detected an error on the PATH element.
So we dig into the code and we found this:
<g transform="matrix(-1 0 0 -1 79.5 -15.5)" id="2_1_0" > <path d="M 29.5 0 A 29.5 29.5 0 0 1 -29.5 0"style="stroke: rgb(243,242,242); stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(243,242,242); fill-rule: nonzero; opacity: 1;" /> </g>
Please noticed that the d= property is connected to the style= property, it is just missing an space.
So to fix we added the space in this line:
fabric.js/src/shapes/circle.class.js
Line 109 in f1459f3
changed from: '"', 'COMMON_PARTS', ' />\n'
'"', 'COMMON_PARTS', ' />\n'
to: '" ', 'COMMON_PARTS', ' />\n'
'" ', 'COMMON_PARTS', ' />\n'
noticed the SPACE after the first ".
Result after:
The text was updated successfully, but these errors were encountered:
hey thanks for spotting this. Could you please open a PR to fix it?
Sorry, something went wrong.
closed with #5544
No branches or pull requests
Hi, when exporting to SVG we detected an error on the PATH element.
So we dig into the code and we found this:
Please noticed that the d= property is connected to the style= property, it is just missing an space.
So to fix we added the space in this line:
fabric.js/src/shapes/circle.class.js
Line 109 in f1459f3
changed from:
'"', 'COMMON_PARTS', ' />\n'
to:
'" ', 'COMMON_PARTS', ' />\n'
noticed the SPACE after the first ".
Result after:
The text was updated successfully, but these errors were encountered: