added a second user-collection

This commit is contained in:
plc-user
2023-12-09 12:02:04 +01:00
parent 457aeb6883
commit f519499a66
30 changed files with 589 additions and 335 deletions

View File

@@ -970,10 +970,12 @@ bool QetShapeItem::toDXF(const QString &filepath,const QPen &pen)
Createdxf::dxfColor(pen));
return true;
case Polygon:
if(m_polygon.isClosed())
if(m_polygon.isClosed()) {
Createdxf::drawPolygon(filepath,m_polygon,Createdxf::dxfColor(pen));
else
}
else {
Createdxf::drawPolyline(filepath,m_polygon,Createdxf::dxfColor(pen));
}
return true;
default:
return false;