Use pen width 1 for DrawPoint in wxSVGFileDC

This is consistent with other DCs.
This commit is contained in:
Maarten Bent 2019-08-20 19:52:50 +02:00
parent dfe76430cc
commit 64be484db2

View File

@ -620,7 +620,7 @@ void wxSVGFileDCImpl::DoDrawPoint(wxCoord x1, wxCoord y1)
wxString s;
s = wxS(" <g style=\"stroke-linecap:round;\">\n ");
s = wxS(" <g style=\"stroke-width:1; stroke-linecap:round;\">\n ");
write(s);
DoDrawLine(x1, y1, x1, y1);