Skip to content
Snippets Groups Projects
Commit 72fb6c8f authored by Luigi Scarso's avatar Luigi Scarso
Browse files

Fixed a typo in the svg backend that was confusing the draw attributes.

parent f8640a8c
No related branches found
No related tags found
No related merge requests found
2024-10-08 Luigi Scarso <luigi.scarso@gmail.com>
* Fixed a typo in the svg backend that was confusing the draw attributes --
see metapost ml Missing stroke-linejoin attribute in SVG output for filldraw command
(thanks to joshua@kraemer.link).
2024-05-19 Luigi Scarso <luigi.scarso@gmail.com>
* Sync with https://github.com/ascherer/mplibdir commit c21f82c1990d1cdb86f51a00b5c81d0088e12454.
......
......@@ -1098,7 +1098,7 @@ void mp_svg_stroke_out (MP mp, mp_graphic_object *h,
}
append_char(';');
}
}
if (gr_ljoin_val((mp_stroked_object *)h)!=0) {
append_string ("stroke-linejoin: ");
switch (gr_ljoin_val((mp_stroked_object *)h)) {
......@@ -1114,7 +1114,7 @@ void mp_svg_stroke_out (MP mp, mp_graphic_object *h,
mp_svg_store_double(mp, gr_miterlim_val((mp_stroked_object *)h));
append_char(';');
}
}
append_string("fill: ");
if (fill_also) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment