We don't need toolTip after we finished creation of CubicBezierPath.

--HG--
branch : feature
This commit is contained in:
Valentina Zhuravska 2016-07-13 14:59:01 +03:00
parent a362731040
commit d96c885e0d

View File

@ -275,6 +275,11 @@ void VisToolCubicBezierPath::RefreshToolTip()
{
Visualization::toolTip = tr("<b>Curved path</b>: select more points for complete segment");
}
if (mode == Mode::Show)
{
Visualization::toolTip = "";
}
emit ToolTip(Visualization::toolTip);
}
}