This commit is contained in:
Thomas Wilshaw
2020-09-29 12:03:01 +01:00
parent 8e6b42a160
commit 791857fba1
4 changed files with 6 additions and 2 deletions
@@ -588,7 +588,7 @@ QList<Block*> ProjectExplorer::GetFootageBlocks(QList<Node*> nodes)
// For each Block see if it is linked to one of the Footage nodes add it to the delete list
if (node->IsBlock()) {
foreach (Node* input, nodes) {
if (node->GetExclusiveDependencies().contains(input)) {
if (node->GetDependencies().contains(input)) {
blocks.append(static_cast<Block*>(node));
}
}