From ede0af4291cc00326b0b70660dd515fd4de6a0f7 Mon Sep 17 00:00:00 2001 From: Eberhard Graether Date: Mon, 27 Oct 2014 12:14:21 +0100 Subject: [PATCH] logic: Fixed GraphView not updated because MessageActivateTokens was not handled in GraphController --- 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 6c3819a4..4d01a3a2 100644 --- a/src/lib/component/controller/GraphController.cpp +++ b/src/lib/component/controller/GraphController.cpp @@ -25,7 +25,7 @@ void GraphController::handleMessage(MessageActivateToken* message) void GraphController::handleMessage(MessageActivateTokens* message) { - //createDummyGraphForTokenId(message->tokenIds[0], &GraphLayouter::layoutSimpleRing); + createDummyGraphForTokenId(message->tokenIds[0], &GraphLayouter::layoutSimpleRing); } GraphView* GraphController::getView()