-
-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
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
Missing semicolon in SVGGraphics2D#strokeStyle() #38
Comments
This is a duplicate of #36 right? The fix is already committed for the next release. |
It is not a duplicate of issue #36! That issue was about the miter limit not being applied at all, due to a logical error in the condition. This ticket is about the missing semicolon for that parameter (.append(";")) - an issue I had not seen then. If said semicolon is already appended in the current version - everything is perfectly fine. The missing semicolon is preventing the following parameter from being applied (as you can see in the screenshots). (Due to the different timezone my responses can take some time.) |
Oops, let me look again. |
Fixed |
A semicolon is missing for the miterLimit.
I did not check, whether you already fixed this issue in the most recent version. Sorry for the inconvenience - simply close this issue in that case.
It should be:
But it is:
Example:
Solution:
The text was updated successfully, but these errors were encountered: