Same lenght to point label for draw and detail.

--HG--
branch : develop
This commit is contained in:
dismine 2014-12-29 20:19:23 +02:00
parent 56653c7943
commit 08f8fc70e1

View file

@ -293,7 +293,7 @@ void VNodePoint::RefreshLine()
VGObject::LineIntersectCircle(QPointF(), radius, QLineF(QPointF(), nameRec.center()- scenePos()), p1, p2);
QPointF pRec = VGObject::LineIntersectRect(nameRec, QLineF(scenePos(), nameRec.center()));
lineName->setLine(QLineF(p1, pRec - scenePos()));
if (QLineF(p1, pRec - scenePos()).length() <= qApp->toPixel(4))
if (QLineF(p1, pRec - scenePos()).length() <= qApp->toPixel(4, Unit::Mm))
{
lineName->setVisible(false);
}