Fix export to HGPL. Reverse line type after testing.

This commit is contained in:
Roman Telezhynskyi 2023-08-16 19:00:14 +03:00
parent 6dae04e3e6
commit bb43ff07ea

View File

@ -488,7 +488,7 @@ void VHPGLEngine::PlotMainPath(QTextStream &out, const VLayoutPiece &detail)
points.append(points.first()); // must be closed
}
PlotPath(out, points, Qt::DashLine);
PlotPath(out, points, Qt::SolidLine);
}
}
@ -504,7 +504,7 @@ void VHPGLEngine::PlotSeamAllowance(QTextStream &out, const VLayoutPiece &detail
points.append(points.first()); // must be closed
}
PlotPath(out, points, Qt::DashDotLine);
PlotPath(out, points, Qt::SolidLine);
}
//---------------------------------------------------------------------------------------------------------------------