0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

UI: Fix missing file list not including transitions

Call the callback to check missing files during LoadTransition method.
This commit is contained in:
Norihiro Kamae 2022-07-18 20:54:06 +09:00 committed by Matt Gajownik
parent aae15fc497
commit a88b34507a

View File

@ -1787,6 +1787,8 @@ void OBSBasic::LoadTransitions(obs_data_array_t *transitions,
QVariant::fromValue(OBSSource(source)));
ui->transitions->setCurrentIndex(
ui->transitions->count() - 1);
if (cb)
cb(private_data, source);
}
}
}