DXF - Fix single shape rectangle scaling

This commit is contained in:
David Varley
2020-09-14 12:29:36 +10:00
parent a68386c028
commit 07df62e362

View File

@@ -675,7 +675,8 @@ void Createdxf::drawRectangle(
const QString &filepath, const QString &filepath,
const QRectF &rect, const QRectF &rect,
const int &colorcode) { const int &colorcode) {
QPolygonF poly(scaleRect(rect)); //QPolygonF poly(scaleRect(rect));
QPolygonF poly(rect);
drawPolyline(filepath,poly,colorcode); drawPolyline(filepath,poly,colorcode);
} }