Change behavior for menu Pattern piece -> Show main path. Now it has an influence on export as well.
This commit is contained in:
parent
0483dd508e
commit
f1ecc80e03
|
@ -38,6 +38,7 @@
|
||||||
- Export tiled PDF with watermark.
|
- Export tiled PDF with watermark.
|
||||||
- [#984] Issue with up to date list of unique names.
|
- [#984] Issue with up to date list of unique names.
|
||||||
- Tracking changes/prevent "OK" recalculation after "Apply".
|
- Tracking changes/prevent "OK" recalculation after "Apply".
|
||||||
|
- Change behavior for menu Pattern piece -> Show main path. Now it has an influence on export as well.
|
||||||
|
|
||||||
# Version 0.6.2 (unreleased)
|
# Version 0.6.2 (unreleased)
|
||||||
- [#903] Bug in tool Cut Spline path.
|
- [#903] Bug in tool Cut Spline path.
|
||||||
|
|
|
@ -466,7 +466,8 @@ VLayoutPiece VLayoutPiece::Create(const VPiece &piece, vidtype id, const VContai
|
||||||
qWarning() << VAbstractApplication::patternMessageSignature + errorMsg;
|
qWarning() << VAbstractApplication::patternMessageSignature + errorMsg;
|
||||||
}
|
}
|
||||||
|
|
||||||
det.SetCountourPoints(futureMainPath.result(), piece.IsHideMainPath());
|
det.SetCountourPoints(futureMainPath.result(),
|
||||||
|
qApp->Settings()->IsPieceShowMainPath() ? false : piece.IsHideMainPath());
|
||||||
det.SetSeamAllowancePoints(futureSeamAllowance.result(), piece.IsSeamAllowance(), piece.IsSeamAllowanceBuiltIn());
|
det.SetSeamAllowancePoints(futureSeamAllowance.result(), piece.IsSeamAllowance(), piece.IsSeamAllowanceBuiltIn());
|
||||||
det.SetInternalPaths(futureInternalPaths.result());
|
det.SetInternalPaths(futureInternalPaths.result());
|
||||||
det.SetPassmarks(futurePassmarks.result());
|
det.SetPassmarks(futurePassmarks.result());
|
||||||
|
|
Loading…
Reference in New Issue
Block a user