I've found that Inkscape doesn't display SVG from rlplot the correct way. Problem is with polyline element - style attributes were ignored. The problem solved by applying the following patch to Export.cpp:
772c772 < cb = rlp_strcpy(tmptxt, 120, " stroke:"); --- > cb = rlp_strcpy(tmptxt, 120, "; stroke:");
This extra ; resulted in empty style element causing Inkscape to ignore the whole attribute.
Thanks for fixing this bug. It was not apparent using Adobe's SVG-viewer.
Reinhard
Log in to post a comment.
I've found that Inkscape doesn't display SVG from rlplot the correct way. Problem is with polyline element - style attributes were ignored. The problem solved by applying the following patch to Export.cpp:
772c772
< cb = rlp_strcpy(tmptxt, 120, " stroke:");
---
> cb = rlp_strcpy(tmptxt, 120, "; stroke:");
This extra ; resulted in empty style element causing Inkscape to ignore the whole attribute.
Thanks for fixing this bug. It was not apparent using Adobe's SVG-viewer.
Reinhard