From 2c89aefe6e4b08b6f90bcbd5300998aab3b8b4b6 Mon Sep 17 00:00:00 2001 From: Anjal Doshi Date: Wed, 8 Jan 2020 14:16:20 -0800 Subject: [PATCH] Fix GraphViewer not updating when moving processors in signal chain --- Source/UI/EditorViewport.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/UI/EditorViewport.cpp b/Source/UI/EditorViewport.cpp index b63f17c01..9ca198fee 100755 --- a/Source/UI/EditorViewport.cpp +++ b/Source/UI/EditorViewport.cpp @@ -907,6 +907,9 @@ void EditorViewport::mouseUp(const MouseEvent& e) signalChainManager->updateVisibleEditors(editor, indexOfMovingComponent, insertionPoint, MOVE); + + AccessClass::getGraphViewer()->updateNodeLocations(); + refreshEditors(); repaint();