Fix bug made in #5336

This removes a duplicate dataChanged() emit. Thanks to @PhysSong for the
hint.
This commit is contained in:
Johannes Lorenz
2020-04-01 21:22:05 +02:00
parent a8df120a58
commit 656eede6ba

View File

@@ -460,7 +460,6 @@ void AutomatableModel::linkModels( AutomatableModel* model1, AutomatableModel* m
model1->linkModel( model2 );
model2->linkModel( model1 );
}
emit model1->dataChanged();
}