logic: Fixed implict children of implicit classes not shown in graph

This commit is contained in:
Eberhard Graether
2016-04-13 14:44:39 +02:00
parent 8d2709a2ad
commit bee3961040
@@ -401,6 +401,11 @@ void GraphController::setNodeActiveRecursive(DummyNode& node, const std::vector<
void GraphController::removeImplicitAndUndefinedChildrenRecursive(DummyNode& node)
{
if (node.isGraphNode() && !node.data->isExplicit())
{
return;
}
for (size_t i = 0; i < node.subNodes.size(); i++)
{
bool removeNode = false;