Merge branch 'master' into new-audio-cache

This commit is contained in:
itsmattkc
2021-09-27 11:18:03 -07:00
4 changed files with 22 additions and 11 deletions
+4 -4
View File
@@ -95,10 +95,10 @@ void NodeGraph::childEvent(QChildEvent *event)
node_children_.append(node);
// Connect signals
connect(node, &Node::InputConnected, this, &NodeGraph::InputConnected);
connect(node, &Node::InputDisconnected, this, &NodeGraph::InputDisconnected);
connect(node, &Node::ValueChanged, this, &NodeGraph::ValueChanged);
connect(node, &Node::InputValueHintChanged, this, &NodeGraph::InputValueHintChanged);
connect(node, &Node::InputConnected, this, &NodeGraph::InputConnected, Qt::DirectConnection);
connect(node, &Node::InputDisconnected, this, &NodeGraph::InputDisconnected, Qt::DirectConnection);
connect(node, &Node::ValueChanged, this, &NodeGraph::ValueChanged, Qt::DirectConnection);
connect(node, &Node::InputValueHintChanged, this, &NodeGraph::InputValueHintChanged, Qt::DirectConnection);
emit NodeAdded(node);
emit node->AddedToGraph(this);