diff --git a/src/common/dcsvg.cpp b/src/common/dcsvg.cpp index 6fa8108632..02b4a99d31 100644 --- a/src/common/dcsvg.cpp +++ b/src/common/dcsvg.cpp @@ -340,11 +340,12 @@ wxString CreateBrushFill(const wxBrush& brush, wxSVGShapeRenderingMode mode) } wxString brushColourStr = Col2SVG(brush.GetColour()); + wxString brushStrokeStr = wxS("stroke-width:1; stroke-linecap:round; stroke-linejoin:round;"); s += wxString::Format(wxS(" \n"), patternName, brushColourStr.substr(1)); - s += wxString::Format(wxS(" \n"), - brushColourStr, pattern, GetRenderMode(mode)); + s += wxString::Format(wxS(" \n"), + brushColourStr, brushStrokeStr, pattern, GetRenderMode(mode)); s += wxS(" \n"); }