diff --git a/src/exportvector.cpp b/src/exportvector.cpp index 2864a3b..0b638d8 100644 --- a/src/exportvector.cpp +++ b/src/exportvector.cpp @@ -482,9 +482,8 @@ void SvgFileWriter::StartFile(void) { "\r\n" "Exported SVG\r\n" "\r\n", - (ptMax.x - ptMin.x) + 1, (ptMax.y - ptMin.y) + 1, - (ptMax.x - ptMin.x) + 1, (ptMax.y - ptMin.y) + 1); - // A little bit of extra space for the stroke width. + (ptMax.x - ptMin.x), (ptMax.y - ptMin.y), + (ptMax.x - ptMin.x), (ptMax.y - ptMin.y)); } void SvgFileWriter::StartPath(RgbColor strokeRgb, double lineWidth,