From 656eede6bac47915c7ca974b40c81162d28a28ae Mon Sep 17 00:00:00 2001 From: Johannes Lorenz Date: Wed, 1 Apr 2020 21:22:05 +0200 Subject: [PATCH] Fix bug made in #5336 This removes a duplicate dataChanged() emit. Thanks to @PhysSong for the hint. --- src/core/AutomatableModel.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/AutomatableModel.cpp b/src/core/AutomatableModel.cpp index 636a05ca9..14bb661e9 100644 --- a/src/core/AutomatableModel.cpp +++ b/src/core/AutomatableModel.cpp @@ -460,7 +460,6 @@ void AutomatableModel::linkModels( AutomatableModel* model1, AutomatableModel* m model1->linkModel( model2 ); model2->linkModel( model1 ); } - emit model1->dataChanged(); }