Correction tooltipe for curved path.

--HG--
branch : develop
This commit is contained in:
dismine 2014-12-04 13:23:40 +02:00
parent b4eb1e7ae0
commit ff9ba9601c

View File

@ -84,11 +84,11 @@ void VisToolSplinePath::RefreshGeometry()
} }
if (path.CountPoint() < 3) if (path.CountPoint() < 3)
{ {
Visualization::toolTip = tr("<b>Curve path</b>: select three or more points"); Visualization::toolTip = tr("<b>Curved path</b>: select three or more points");
} }
else else
{ {
Visualization::toolTip = tr("<b>Curve path</b>: select three or more points, " Visualization::toolTip = tr("<b>Curved path</b>: select three or more points, "
"<b>Enter</b> - finish creation"); "<b>Enter</b> - finish creation");
} }
} }