ui: Fixed activation of bookmarked edge did not highlight edge

This commit is contained in:
Eberhard Graether
2017-11-03 11:44:00 +01:00
parent 5cd4378758
commit f1f4fe9a2d
3 changed files with 31 additions and 0 deletions
@@ -242,6 +242,17 @@ void QtGraphNode::focusOut()
updateStyle();
}
void QtGraphNode::showNodeRecursive()
{
blendIn();
showNode();
for (auto subNode : m_subNodes)
{
subNode->showNodeRecursive();
}
}
void QtGraphNode::matchNameRecursive(const std::string& query, std::vector<QtGraphNode*>* matchedNodes)
{
matchName(query, matchedNodes);