DXF - remove a couple of debug messages

This commit is contained in:
David Varley
2020-09-22 19:47:02 +10:00
parent 2d6bef71ae
commit 45137987ab

View File

@@ -986,12 +986,10 @@ void Createdxf::drawPolygon(
const QPolygonF &poly,
const int &colorcode)
{
qDebug() << "PolygonIsClosed: " << poly.isClosed();
QPolygonF pg = poly;
if(!poly.isClosed()) {
pg << poly.at(0);
pg << poly.at(0); // Close it
}
qDebug() << "PolygonIsClosed: " << poly.isClosed();
drawPolyline(filepath,pg,colorcode);
}