Make sure image sequences are caught.

This commit is contained in:
Thomas Wilshaw
2020-09-28 14:33:55 +01:00
parent 0e272b6bba
commit 0f1d4ec1b8
@@ -559,7 +559,7 @@ QList<Node*> ProjectExplorer::GetItemNodes(Item* item, Item::Type type)
// Loop through nodes to find our Footage node
foreach (Node* node, s->nodes()) {
// Check if node is of the right type
if (node->IsMedia() && static_cast<MediaInput*>(node)->type() == stream.get()->type()) {
if (node->IsMedia()){
// Check the streams are the same
if (static_cast<MediaInput*>(node)->footage() == stream) {
nodes.append(node);