From 41fe24ed7ab782a89631f7983e46de7371fb6f9f Mon Sep 17 00:00:00 2001 From: Eberhard Graether Date: Wed, 7 Dec 2016 10:05:43 +0100 Subject: [PATCH] logic: Fixed crash in bundling --- src/lib/component/controller/GraphController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/component/controller/GraphController.cpp b/src/lib/component/controller/GraphController.cpp index f5321a57..21f26c24 100644 --- a/src/lib/component/controller/GraphController.cpp +++ b/src/lib/component/controller/GraphController.cpp @@ -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; }