logic: Fixed crash in bundling

This commit is contained in:
Eberhard Graether
2016-12-07 10:05:43 +01:00
parent 0c909fd2bd
commit 41fe24ed7a
@@ -760,7 +760,7 @@ void GraphController::bundleNodesAndEdgesMatching(
for (size_t i = 0; i < m_dummyNodes.size(); i++)
{
const DummyNode* node = m_dummyNodes[i].get();
if (node->bundleInfo.isActive || !node->visible)
if (node->bundleInfo.isActive || !node->visible || !node->isGraphNode())
{
continue;
}