From 64be484db2507f41fe92c34b8566ca8beb5dc339 Mon Sep 17 00:00:00 2001 From: Maarten Bent Date: Tue, 20 Aug 2019 19:52:50 +0200 Subject: [PATCH] Use pen width 1 for DrawPoint in wxSVGFileDC This is consistent with other DCs. --- src/common/dcsvg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/dcsvg.cpp b/src/common/dcsvg.cpp index 422b36b6c4..8679b1d38e 100644 --- a/src/common/dcsvg.cpp +++ b/src/common/dcsvg.cpp @@ -620,7 +620,7 @@ void wxSVGFileDCImpl::DoDrawPoint(wxCoord x1, wxCoord y1) wxString s; - s = wxS(" \n "); + s = wxS(" \n "); write(s); DoDrawLine(x1, y1, x1, y1);