System identifies two of the same curve. Closes #171
This commit is contained in:
parent
5d22771428
commit
e013ce234a
|
@ -2,6 +2,7 @@
|
|||
- Z value change for a layout piece.
|
||||
- Fix issue with Custom template.
|
||||
- Fix issue with tile font size.
|
||||
- [smart-pattern/valentina#171] System identifies two of the same curve.
|
||||
|
||||
# Valentina 0.7.50 February 14, 2022
|
||||
- Fix regression. Minimal seam allowance width is less than the point accuracy values.
|
||||
|
|
|
@ -146,7 +146,8 @@ auto DoubleCurve(const VPieceNode &firstNode, const VPieceNode &secondNode, cons
|
|||
}
|
||||
|
||||
// The same curve, but different modeling objects
|
||||
if (curve1->getIdObject() == curve2->getIdObject())
|
||||
if (curve1->getIdObject() != NULL_ID && curve2->getIdObject() != NULL_ID &&
|
||||
curve1->getIdObject() == curve2->getIdObject())
|
||||
{
|
||||
error = QObject::tr("Leave only one copy of curve '%1'").arg(curve1->name());
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue
Block a user