fixed regression from switching folder from outputs to inputs

This commit is contained in:
itsmattkc
2021-03-14 21:51:47 +11:00
parent 2a9513e56a
commit fd6319b837
6 changed files with 22 additions and 19 deletions
+1 -1
View File
@@ -1293,7 +1293,7 @@ void Core::CacheActiveSequence(bool in_out_only)
bool Core::ValidateFootageInLoadedProject(Project* project, const QString& project_saved_url)
{
QVector<Footage*> project_footage = project->root()->ListOutputsOfType<Footage>();
QVector<Footage*> project_footage = project->root()->ListChildrenOfType<Footage>();
QVector<Footage*> footage_we_couldnt_validate;
foreach (Footage* footage, project_footage) {