Fix regression. Minimal seam allowance width is less than the point accuracy values.

This commit is contained in:
Roman Telezhynskyi 2021-07-09 10:42:09 +03:00
parent 5b7e98bf48
commit d280f6a2bb
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
# Valentina 0.7.50 (unreleased)
- Fix regression. Minimal seam allowance width is less than the point accuracy values.
# Valentina 0.7.49 July 1, 2021
- Fix crash.
- Add tooltip for Export draw feature.

View File

@ -55,7 +55,7 @@ const qreal maxL = 3.5;
const qreal VSAPoint::passmarkFactor = 0.5;
const qreal VSAPoint::maxPassmarkLength = (10/*mm*/ / 25.4) * PrintDPI;
const qreal VSAPoint::minSAWidth = ToPixel(0.015, Unit::Cm);
const qreal VSAPoint::minSAWidth = accuracyPointOnLine + accuracyPointOnLine*0.5;
namespace
{