Fix visualization for tool Point of intersection line and axis.

This commit is contained in:
Roman Telezhynskyi 2022-05-06 15:11:28 +03:00
parent 689aea92b5
commit 92c9160bea
2 changed files with 3 additions and 0 deletions

View file

@ -1,6 +1,7 @@
# Valentina 0.7.52 (unreleased)
- Fix crash when default locale is ru.
- Puzzle app. Fix incorrect update of a layout piece.
- Fix visualization for tool Point of intersection line and axis.
# Valentina 0.7.51 April 18, 2022
- Z value change for a layout piece.

View file

@ -258,6 +258,8 @@ void Visualization::DrawLine(VScaledLine *lineItem, const QLineF &line, const QC
{
lineItem->setLine(line);
}
lineItem->setVisible(not line.isNull());
}
//---------------------------------------------------------------------------------------------------------------------