From 97a6379c6db356bbab4f67af57ae69c5e89f8d1f Mon Sep 17 00:00:00 2001 From: Johannes Lorenz Date: Sat, 7 Dec 2019 22:35:42 +0100 Subject: [PATCH] Update UI after linking models (#4904) --- src/core/AutomatableModel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/AutomatableModel.cpp b/src/core/AutomatableModel.cpp index 14bb661e9..636a05ca9 100644 --- a/src/core/AutomatableModel.cpp +++ b/src/core/AutomatableModel.cpp @@ -460,6 +460,7 @@ void AutomatableModel::linkModels( AutomatableModel* model1, AutomatableModel* m model1->linkModel( model2 ); model2->linkModel( model1 ); } + emit model1->dataChanged(); }