Fix bug. Hide internal path if it doesn't have a parent.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2018-07-25 12:57:39 +03:00
parent fe9dc90dc7
commit 86e7674920

View File

@ -309,7 +309,7 @@ void VToolPiecePath::RefreshGeometry()
QPen pen = this->pen();
pen.setStyle(path.GetPenType());
this->setPen(pen);
if (_referens > 0)
if (_referens > 0 && GetParentType() == ParentType::Item)
{
setVisible(path.IsVisible(this->getData()->DataVariables()));
}