Fix crash after using tool Union of details.

This commit is contained in:
Roman Telezhynskyi 2023-07-08 10:33:23 +03:00
parent 3e2a44d2ab
commit 276c620535
2 changed files with 6 additions and 0 deletions

View file

@ -31,6 +31,7 @@
- Piece labels line break.
- Support for single-line fonts.
- Export to HP-GL format.
- Fix crash after using tool Union of details.
# Valentina 0.7.52 September 12, 2022
- Fix crash when default locale is ru.

View file

@ -85,6 +85,11 @@ void DialogUnionDetails::ChosenObject(quint32 id, const SceneObject &type)
}
else
{
if (d1 == id)
{
emit ToolTip(tr("Select unique detail"));
return;
}
ChoosedDetail(id, type, d2, indexD2);
}
}