Fixed issue #697. Incomplete Internal Path for Waist Dart.

(grafted from 1f17c5a2e540f1b1c27dab709bae1570fb170ed9)

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2017-05-31 10:55:39 +03:00
parent bd72aa29cc
commit 37a28a4629
3 changed files with 6 additions and 2 deletions

View File

@ -14,6 +14,7 @@
- Tab Pins moved to be second in the list after tab Paths.
- Added tooltip for tab Passmark. Explained meaning of check box "Show the second passmark on seam line".
- [#696] Wrong grainline position on layout.
- [#697] Incomplete Internal Path for Waist Dart.
# Version 0.5.0 May 9, 2017
- [#581] User can now filter input lists by keyword in function wizard.

View File

@ -1134,9 +1134,9 @@ bool DialogPiecePath::PathIsValid() const
ui->helpLabel->setText(url);
return false;
}
else if (not EachPointLabelIsUnique(ui->listWidget))
else if (GetType() == PiecePathType::CustomSeamAllowance && not EachPointLabelIsUnique(ui->listWidget))
{
url += tr("Each point in the path must be unique!");
url += tr("Each point in the <b>custom seam allowance</b> path must be unique!");
ui->helpLabel->setText(url);
return false;
}

View File

@ -113,6 +113,9 @@
<property name="scaledContents">
<bool>false</bool>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
</layout>